shithub: mc

ref: 079536dfac30da7db118b8184ec04f0afdd4d461
dir: /libstd/result.myr/

View raw version
use "die.use"

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