Open toqueteos opened 10 years ago
With newline character
Eval of "Hello\nWorld" reports Hello.
"Hello\nWorld"
Hello
Nothing on console.
http://i.imgur.com/toR5aKh.png
With tabs or multiple spaces
Eval of "Hello\tWorld" reports Hello World (single space). Eval of "Hello\t World" (one or more spaces between Hello and World) reports Hello World (single space).
"Hello\tWorld"
Hello World
"Hello\t World"
World
With comments
"""Hello World!""" reports Hello World!. It should report nothing.
"""Hello World!"""
Hello World!
With newline character
Eval of
"Hello\nWorld"
reportsHello
.Nothing on console.
http://i.imgur.com/toR5aKh.png
With tabs or multiple spaces
Eval of
"Hello\tWorld"
reportsHello World
(single space). Eval of"Hello\t World"
(one or more spaces betweenHello
andWorld
) reportsHello World
(single space).With comments
"""Hello World!"""
reportsHello World!
. It should report nothing.