summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.coffee
blob: 2cbd1df39610a6939a2fdb28042be6ee8483392d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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'