shithub: mc

ref: 74c20890c23bd5047330e52c062f9fa10ede6e7f
dir: /lib/std/option.myr/

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