shithub: mc

ref: 5f908a4b24cde049374c0922bce3cc067ab216dc
dir: /lib/std/option.myr/

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