shithub: mc

ref: 4ef5e4ab736c4c5e083654daedfd6ba32e112d51
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
	;;
;;