shithub: mc

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