shithub: mc

ref: 43b95083bf8572f31767775086c3ef5cbf384c65
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
	;;
;;