Skip to content

Instantly share code, notes, and snippets.

@kephas
Created March 19, 2015 01:45
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 kephas/6f9847684fdc307bc003 to your computer and use it in GitHub Desktop.
Save kephas/6f9847684fdc307bc003 to your computer and use it in GitHub Desktop.
Scheme's named let mockup in C++
nlet foo(count = 5) {
if(count != 0) {
cout << count << endl;
foo(count--);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment