shithub: mc

ref: 34266f6c2a32738635087821af26dd1e4f58217d
dir: /libstd/option.myr/

View raw version
use "types.use"
use "fmt.use"
use "varargs.use"

pkg std =
	type option(@a) = union
		`Some @a
		`None
	;;
;;