shithub: mc

ref: 603b1e86c7cb9c70cc15457df711c1831f593607
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
	;;
;;