shithub: mc

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