shithub: mc

ref: 86f488a953c6830c6f39203aac8be34a338e1d44
dir: /lib/std/option.myr/

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