9 lines
166 B
Text
9 lines
166 B
Text
> "foobar";
|
|
"foobar"
|
|
|
|
> "foo\nbar"; # string with a newline
|
|
"foo
|
|
bar"
|
|
|
|
> "c"; # a character
|
|
"c"
|