shithub: mc

ref: 943c865bcfacb00af4c681fc36fbcab2b7f9a55f
dir: /lib/std/option.myr/

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