shithub: mc

ref: 7c284022867d6a453b72e90235c8a86ce13fcccc
dir: /libstd/option.myr/

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