shithub: mc

ref: bc4494b485a0389d91bae2e2920abc5ab0c55129
dir: /libstd/result.myr/

View raw version
use "die.use"

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