You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text describing a multiline string is confusing. An example that shows how various multiline strings are manifest would be helpful. Or perhaps a link to a reference document?
Is
let text = """
foo
bar
"""
different from
let text = """
foo
bar
"""
etc.
The text was updated successfully, but these errors were encountered:
I thought that some syntax might be illegal, but the text doesn't make it clear. Even the language reference is a bit unclear, partly because it's hard to count spaces. Perhaps the text could be written differently. Maybe:
The number of spaces preceding the closing delimiter indicate the indentation count. Each line after the opening delimiter will have indentation count spaces removed from the front of the line. If each line does not contain at least indentation count spaces at the beginning of the line, the multiline string is malformed.
Does the BNF in the language ref capture this? I'm not sure that it does.
The text describing a multiline string is confusing. An example that shows how various multiline strings are manifest would be helpful. Or perhaps a link to a reference document?
Is
different from
etc.
The text was updated successfully, but these errors were encountered: