Skip to content

Instantly share code, notes, and snippets.

@rightfold

rightfold/in.js Secret

Created March 5, 2015 20:47
Show Gist options
  • Save rightfold/2cd4d1492ba3fcb0e5d7 to your computer and use it in GitHub Desktop.
Save rightfold/2cd4d1492ba3fcb0e5d7 to your computer and use it in GitHub Desktop.
function f(x, $continue) {
var y = x + 1;
var z = y * y;
return $continue(z);
}
f(x, function(r) {
console.log(r);
});
var a = x + 1;
console.log(a * a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment