shithub: mc

ref: 8da5ac5ac4258588634453d55cec95f29a02647b
dir: /lib/std/option.myr/

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