hyperphoenix
Technical User
can print display results in rows instead of columns?
thank you
thank you
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@out_buff = ('an', 'array', 'of', 'single', 'unit', 'vals');
print "$_\n" foreach (@out_buff);
@out_buff1 = ('an', 'array', 'of', 'single', 'unit', 'vals');
@out_buff2 = ('another', 'array', 'with', 'different', 'single', 'unit', 'vals');
print "$_\n" foreach (@out_buff1, @out_buff2);