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