Blame README.md

7776f23
# perl-Long-Jump
7776f23
7776f23
This Perl module essentially provides a multi-level return. You can mark
7776f23
a spot with setjump() and then unwind the stack back to that point from any
7776f23
nested stack frame by name using longjump(). You can also provide a list of
7776f23
return values. It is safer than C language jump in that it only lets you
7776f23
escape frames by going up the stack, you cannot jump in other ways.