shithub: mc

ref: 026ccbd147926e470ff77a5f1bc613dad7017799
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
	;;
;;