shithub: mc

ref: 95e600ae6adf84bdb9c90304c405285e50b919dd
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
	;;
;;