Mazzaroth on 02/19/11
Last Edited at 02/19/11 03:30am
sub pretty_print_array { my ( $title, @array) = @_; my $numb = $#array +1; print "Array : $title ($numb entries)\n"; for $line (@array) { print "\t'$line'\n"; } print "=========================\n\n";}
Report this snippet Tweet
Comment:
You need to login to post a comment.