1 # A CoffeeScript parser test file
6 A multi-line block comment
7 begins and ends with three hash marks
10 multi_line_string = '''
11 A multi-line string constant ("here doc")
12 begins and ends with three quote marks
15 foo = "A string can wrap across multiple lines
16 and may contain #{interpolated_values}"
20 A clever parser can use Ohcount's "Polyglot" feature treat the
21 following as embedded JavaScript.
23 embedded_js = `function() {
24 return [document.title, "Hello JavaScript"].join(": ");