shithub: mc

ref: 6e9c17391b5f1cc81904d622efccff55519be6d9
dir: /lib/std/option.myr/

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