Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function(args) {
- dostuff();
- if (somecond)
- return function(someotherargs);
- return basecase;
- }
- -->
- function(args) {
- while(true) {
- dostuff();
- if (somecond) {
- args = someotherargs;
- continue;
- }
- return basecase;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment