shithub: mc

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

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