shithub: mc

ref: 3b6a42aaa1dfb75db06e9bf8cb7953cecefc647f
dir: /lib/std/option.myr/

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