shithub: mc

ref: b862b777b9a3efb3c3bb8e733906cc80d93736cc
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
	;;
;;