RosettaCodeData/Task/Literals-String/Maple/literals-string-1.maple
2023-07-01 13:44:08 -04:00

9 lines
166 B
Text

> "foobar";
"foobar"
> "foo\nbar"; # string with a newline
"foo
bar"
> "c"; # a character
"c"