RosettaCodeData/Task/String-append/Perl/string-append.pl
2015-02-20 09:02:09 -05:00

3 lines
44 B
Perl

my $str = 'Foo';
$str .= 'bar';
print $str;