mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
47 lines
341 B
CoffeeScript
47 lines
341 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"
|