shithub: mc

ref: 75f404b16e4bde907d084bbe637c2b96f9d02c67
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
	;;
;;