shithub: mc

ref: 61766f9822581c7f7ed44c66ff975517b350987a
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
	;;
;;