RosettaCodeData/Task/String-append/Raku/string-append.raku

4 lines
42 B
Raku

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