shithub: mc

ref: 9beb928a779eee468ce065ce5c6f4a022a55abe8
dir: /libstd/option.myr/

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