Guest User

Untitled

a guest
Aug 6th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function(args) {
  2. dostuff();
  3. if (somecond)
  4. return function(someotherargs);
  5. return basecase;
  6. }
  7. -->
  8. function(args) {
  9. while(true) {
  10. dostuff();
  11. if (somecond) {
  12. args = someotherargs;
  13. continue;
  14. }
  15. return basecase;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment