shithub: mc

ref: 32fd9ebd1835ebb788ddf8555dab777e32ee3f97
dir: /lib/std/option.myr/

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