shithub: mc

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