shithub: mc

ref: cb85a03cb45a25936ce0afaa17651636ca566606
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`None
		`Some @a
	;;
;;