shithub: mc

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

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