Clarify escaped newlines in tutorial

Closes #1117
This commit is contained in:
Marijn Haverbeke 2011-11-22 12:47:07 +01:00
parent bd16aac903
commit 532642f425

View File

@ -240,7 +240,12 @@ character escapes, using the backslash character:
String literals allow the same escape sequences. They are written
between double quotes (`"hello"`). Rust strings may contain newlines.
When a newline is preceded by a backslash, it, and all white space
following it, will not appear in the resulting string literal.
following it, will not appear in the resulting string literal. So
this is equivalent to `"abc"`:
let s = "a\
b\
c";
## Operators