RosettaCodeData/Task/String-append/Perl-6/string-append.pl6

4 lines
42 B
Raku

my $str = "foo";
$str ~= "bar";
say $str;