6 lines
150 B
Perl
6 lines
150 B
Perl
#If your data already have quotes, you can use 'q' operators to create strings with quotes.
|
|
|
|
$var = q('Single-quoted string.');
|
|
|
|
print "$var\n";
|