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

3 lines
42 B
Raku

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