Skip to content

Instantly share code, notes, and snippets.

@ScatteredRay
Created February 9, 2013 20:26
Show Gist options
  • Save ScatteredRay/4746987 to your computer and use it in GitHub Desktop.
Save ScatteredRay/4746987 to your computer and use it in GitHub Desktop.
f = (v) ->
v
x = [a, f
b, 2]
y = {a: f
b: 2}
var f, x, y;
f = function(v) {
return v;
};
x = [a, f, b, 2];
y = {
a: f({
b: 2
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment