shithub: mc

ref: 2c2229feed311591c4046e8d351f75fe9b426a93
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
	;;
;;