shithub: mc

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

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