shithub: mc

ref: 86dab9d203405b143a29f2fa137af01b7c943f65
dir: /libstd/option.myr/

View raw version
use "types.use"
use "fmt.use"
use "varargs.use"

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