mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
68 lines
606 B
CoffeeScript
68 lines
606 B
CoffeeScript
a: """
|
|
basic heredoc
|
|
on two lines
|
|
"""
|
|
|
|
ok a is "basic heredoc\non two lines"
|
|
|
|
|
|
a: '''
|
|
a
|
|
"b
|
|
c
|
|
'''
|
|
|
|
ok a is "a\n \"b\nc"
|
|
|
|
|
|
a: '''one-liner'''
|
|
|
|
ok a is 'one-liner'
|
|
|
|
|
|
a: """
|
|
out
|
|
here
|
|
"""
|
|
|
|
ok a is "out\nhere"
|
|
|
|
|
|
a: '''
|
|
a
|
|
b
|
|
c
|
|
'''
|
|
|
|
ok a is " a\n b\nc"
|
|
|
|
|
|
a: '''
|
|
a
|
|
|
|
|
|
b c
|
|
'''
|
|
|
|
ok a is "a\n\n\nb c"
|
|
|
|
|
|
a: '''more"than"one"quote'''
|
|
|
|
ok a is 'more"than"one"quote'
|
|
|
|
|
|
val: 10
|
|
|
|
a: """
|
|
basic heredoc $val
|
|
on two lines
|
|
"""
|
|
|
|
b: '''
|
|
basic heredoc $val
|
|
on two lines
|
|
'''
|
|
|
|
ok a is "basic heredoc 10\non two lines"
|
|
ok b is "basic heredoc \$val\non two lines"
|