shithub: mc

ref: 11795725f2ee181399c264d7f2aec213f635891a
dir: /libstd/option.myr/

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