my $bla = 'a string' . 'another string' . 'yet another' . 'too much for one line';
####
my $bla = 'a string'
. 'another string'
. 'yet another'
. 'too much for one line';
####
my $bla
= 'a string'
. 'another string'
. 'yet another'
. 'too much for one line';