shithub: mc

ref: d0331c3cfb6f27afe416b9cdb7b15e18b9083e3e
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
	;;
;;