shithub: mc

ref: ae2627db9255d9e4f58cf07afa486aaebd2bba5a
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
	;;
;;