shithub: mc

ref: 6b0a400370a39fdb924cb9172ef2241f7fc2a096
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
	;;
;;