blob: 9f08ae3e49509fb27651c310cedaed2b0c19d6af [file] [log] [blame]
>>>
var a = 'Multiline strings keep leading space\n' 'I write adjacent strings.\n';
<<<
var a =
'Multiline strings keep leading space\n'
'I write adjacent strings.\n';
>>>
var a = '$bar' r'$money' 'newline\n' r'regexp \s*\d+\Z';
<<<
var a =
'$bar'
r'$money'
'newline\n'
r'regexp \s*\d+\Z';
>>>
var b = 'text' /* comment */ 'more text' /* comment */;
<<<
var b =
'text' /* comment */
'more text' /* comment */;