shithub: mc

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

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