gourish has asked for the wisdom of the Perl Monks concerning the following question:
my @nums = (1, 2, 4, 5, 8, 9); my @dat = (3, 9, 14, 10, 12, 8); print join("\n",values @nums), join("\n", values @dat), "\n";
The result what I get it a follows
1
2
4
5
8
93
9
14
10
12
8
is there any way to get a one line print statement so that I get the output as
1 3
2 9
4 14
5 10
8 12
9 8
Thanks,
Gourish
|
|---|