shithub: mc

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

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