shithub: mc

ref: 26d2752901f380a5ea22935f49e58e29f404a54a
dir: /lib/std/option.myr/

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