shithub: mc

ref: 765c9f00afd476527770591b24e3d7a08695a691
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
	;;
;;