14 lines
233 B
Text
14 lines
233 B
Text
|
|
"Just a string"
|
||
|
|
# String interpolation. \ is a general escape character.
|
||
|
|
$"_ _ _ _ _ \_" 1 @a @\" @@ "asd"
|
||
|
|
|
||
|
|
# multiline
|
||
|
|
$ multi
|
||
|
|
$ lines
|
||
|
|
$ " ' @ \ ! $ _ are all allowed
|
||
|
|
|
||
|
|
# multiline with interpolation
|
||
|
|
"ple" "...."
|
||
|
|
$$ multi_
|
||
|
|
$$ _lines
|