shithub: mc

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

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