my @array; $i=0; while($i<5) { push(@array,$i); push(@array,"\n"); $i++; } print "@array"; Result : 0 1 2 3 4