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