shithub: mc

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

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