...
| Code Block |
|---|
assert '\b' == '\010' //backspace
assert '\t' == '\011' //horizontal tab
assert '\n' == '\012' //linefeed
assert '\f' == '\014' //form feed
assert '\r' == '\015' //carriage return
assert '\\' == '\\' //use backslash to escape the backslash
|
To span multiple lines, use either triple quotes or a backslash at the end of the continuing lines to join them with the next:
...