Files
coffeescript/test/fixtures/execution/test_heredocs.coffee
2010-01-19 09:49:23 -05:00

47 lines
365 B
CoffeeScript

a: """
basic heredoc
on two lines
"""
print(a is "basic heredoc\non two lines")
a: '''
a
"b
c
'''
print(a is "a\n \"b\nc")
a: '''one-liner'''
print(a is 'one-liner')
a: """
out
here
"""
print(a is "out\nhere")
a: '''
a
b
c
'''
print(a is " a\n b\nc")
a: '''
a
b c
'''
print(a is "a\n\n\nb c")