shithub: mc

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