shithub: mc

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

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