shithub: mc

ref: 67e077fe5811a7bc218cb58de5a32e337417268c
dir: /lib/std/result.myr/

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