shithub: mc

ref: 094074d7ecb008cd3d59dd0d011387299a9fe9c8
dir: /libstd/result.myr/

View raw version
use "die.use"

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