1# function arrows
2
3methodA:-> 'A'
4methodB:=> 'B'
5methodC:()=> 'C'
6methodD:()-> 'D'
7methodE:(a,b)-> 'E'
8methodF:(c,d)-> 'F'
9-> 'G'
10=> 'H'
11
12(-> 'I')
13(=> 'J')
14
15# strings
16
17"#{wow}"
18"w#{wow}w"
19"#wow"
20"wow#"
21"w#ow"
22
23'#{wow}'
24'w#{wow}w'
25'#wow'
26'wow#'
27'w#ow'
28