shithub: mc

ref: 9d11b6dbcecb0ed2013043bbff1dea9ac0355c7b
dir: /lib/std/option.myr/

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