shithub: mc

ref: 77d584ee227d829e842efdc938dffa322665b22c
dir: /lib/std/option.myr/

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