shithub: mc

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