shithub: mc

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