shithub: mc

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