shithub: mc

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