Skip to content

Instantly share code, notes, and snippets.

@RobertFischer
Created May 13, 2010 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobertFischer/400235 to your computer and use it in GitHub Desktop.
Save RobertFischer/400235 to your computer and use it in GitHub Desktop.
loop (x, y, z);
if(x == true) recur(false, y, z);
return y + z;
@kloudshare
Copy link

(loop [ x x-init y y-init z z-init ](if x %28recur false y z%29 %28+ y z%29))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment