shithub: mc

ref: 9fa92a3ac5c7d6c52da80d8314a51d592645ad79
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
	;;
;;