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

3 lines
42 B
Raku

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