We have already seen how to use print to output lists: |
print @argfiles; # or you can use parentheses |
print (@argfiles); |
As in C, one can obtain format control with printf, which starts with a special purpose format specifier: |
printf ("%10s %6d %10.2f\n", $string, $decimal, $float);
|