in reply to Re^2: Build your array with push
in thread Build your array with push

That doesn't really help here since you can't insert at the top safely.

The style has been called The Perlish Coding Style. Accoding to that document, the following would be the proper alignment:

{ my @array = ( 'Hibbs' , 'Daglish' , 'Schwartz' , 'Vroom' ) ; my $string = 'this is a very long string that has a certain number ' . $number . ' of segments.' . "\n" }