shithub: mc

ref: 812b363d893293993375c6db5243b0c5ca873dad
dir: /libstd/result.myr/

View raw version
use "die.use"

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