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