RosettaCodeData/Task/String-append/Perl/string-append.pl
2023-07-01 13:44:08 -04:00

3 lines
44 B
Perl

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