shithub: mc

ref: 042899b8725429043304247c297d0344cffe4780
dir: /lib/std/option.myr/

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