shithub: mc

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

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