shithub: mc

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

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