shithub: mc

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