use strict; use warnings; use 5.010; my $text = 'foo'; # kurzform $text .= 'bar'; # langform $text = $text . 'bar'; say $text;