shithub: mc

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