- or download this
if(length $c[-1]) {
# Now actually processing the preceding literal
...
push @code, ' $c[' . $#c . "],\n";
push @c, ''; # new chunk
}
- or download this
my $literal = <DATA>;
...
__DATA__
this could be \'; system("ls -la");\'
- or download this
if(length $c[-1]) {
# Now actually processing the preceding literal
...
push @code, " '$c[-1]',\n";
$c[-1] = ''; # reuse this slot
}