shithub: mc

ref: 020869f23ed9d0f0ca5b53bdce1f87c05024689f
dir: /libstd/result.myr/

View raw version
use "die.use"

pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Fail	@b
	;;
;;