Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / examplefiles / example.coffee
Size: Mime:
# function arrows

methodA:-> 'A'
methodB:=> 'B'
methodC:()=> 'C'
methodD:()-> 'D'
methodE:(a,b)-> 'E'
methodF:(c,d)-> 'F'
-> 'G'
=> 'H'

(-> 'I')
(=> 'J')

# strings

"#{wow}"
"w#{wow}w"
"#wow"
"wow#"
"w#ow"

'#{wow}'
'w#{wow}w'
'#wow'
'wow#'
'w#ow'