shithub: mc

ref: 061e88f56523001e1534ce6bbed09aa976c5f85c
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
	;;
;;