shithub: mc

ref: 68cbebc85a6394a3e23a75f911330eed9022629c
dir: /libstd/option.myr/

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