aboutsummaryrefslogtreecommitdiffhomepage
path: root/notes/multiline_strings.txt
blob: ccd00acc4c50963c662bd07ffd47c8486fa751d1 (plain)
1
2
3
4
5
6
7
8
9
10

Multi-line strings
==================

Problem:

    string s = "test"
               "blabla".substring(1,2)

Is the second line a continuation or a separate statement?
We could decide that a statement may not start with a string.