shithub: mc

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