shithub: mc

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

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