shithub: mc

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