shithub: mc

ref: 2bf74b8f25a89c8a49e96e5e44ffd72f495e4930
dir: /lib/std/option.myr/

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