You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
403 B
CoffeeScript
22 lines
403 B
CoffeeScript
10 years ago
|
#!/usr/bin/env coffee
|
||
|
|
||
|
try
|
||
|
throw URIError decodeURI(0xC0ffee * 123456.7e-8 / .9)
|
||
|
catch e
|
||
|
console.log 'qstring' + "qqstring" + '''
|
||
|
qdoc
|
||
|
''' + """
|
||
|
qqdoc
|
||
|
"""
|
||
|
|
||
|
do ->
|
||
|
###
|
||
|
herecomment
|
||
|
###
|
||
|
re = /regex/imgy.test ///
|
||
|
heregex # comment
|
||
|
///imgy
|
||
|
this isnt: `just JavaScript`
|
||
|
undefined
|
||
|
|
||
|
sentence = "#{ 22 / 7 } is a decent approximation of π"
|