4 lines
44 B
Perl
4 lines
44 B
Perl
|
|
my $str = 'Foo';
|
||
|
|
$str .= 'bar';
|
||
|
|
print $str;
|