shithub: mc

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

View raw version
use "die.use"

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