shithub: mc

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

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