Skip to content

Instantly share code, notes, and snippets.

@rf-
Created July 28, 2010 21:00
Show Gist options
  • Save rf-/496284 to your computer and use it in GitHub Desktop.
Save rf-/496284 to your computer and use it in GitHub Desktop.
~ $ cat > test.coffee
a: 3
b: 4
c: a + b
~ $ coffee -p test.coffee
(function() {
{
a: 3,
b: 4,
c: a + b
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment