shithub: mc

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