Skip to content

Instantly share code, notes, and snippets.

@edvakf
Created October 18, 2011 20:42
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 edvakf/1296658 to your computer and use it in GitHub Desktop.
Save edvakf/1296658 to your computer and use it in GitHub Desktop.
# CoffeeScript version 1.1.2
# compiles
if 'foo' ==
String.fromCharCode.apply(null,
[102, 111, 111])
alert 'foo!!'
# doesn't compile
if 'foo' ==
String.fromCharCode.apply(null,
[102, 111, 111])
alert 'foo!!'
# too many ) on line 3
@edvakf
Copy link
Author

edvakf commented Oct 18, 2011

Comples with version 1.1.3-pre

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment