shithub: mc

ref: cc3afe8080e433d68406cf51615a9530ecbbba68
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`None
		`Some @a
	;;
;;