Skip to content

Instantly share code, notes, and snippets.

@simonask
Created July 11, 2009 07:10
Show Gist options
  • Save simonask/145142 to your computer and use it in GitHub Desktop.
Save simonask/145142 to your computer and use it in GitHub Desktop.
/*
cc === "current continuation"
*/
bar: {
foo()
}
foo: {
foo() // call, return to foo
foo() // call, return to foo
foo() // tail call, return to bar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment