shithub: mc

ref: 948799fdb2b9120a1b64f48e8f3fd33193632e96
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
	;;
;;