shithub: mc

ref: b6239eb7e760bc00d57a82096c64be8e108fd17a
dir: /libstd/option.myr/

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