http://qs321.pair.com?node_id=849840


in reply to Space character when using push function on arrays

my (@arr, $i); for $i (0..4) { push @arr, $i, "\n"; } print join '', @arr;

Replies are listed 'Best First'.
Re^2: Space character when using push function on arrays
by iamravikanth (Novice) on Jul 15, 2010 at 19:57 UTC
    Thanks a lot monks, it resolved the issue.