shithub: mc

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