Could anyone tell me how could I print values of array in different rows without using loop?
#!/usr/bin/perl -w
my @a = ('Test1','Test2','Test3');
print "@a";# output like **Test1 Test2 Test3** but i want **Test2 in next line and Test3 next to next line**
Is it Possible?