shithub: mc

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

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