shithub: mc

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