shithub: mc

ref: 0614f810f7ccf086c7ba86db9d9198b5fb240643
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
	;;
;;