good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
perlfunc:printfby gods (Initiate) |
on Aug 24, 1999 at 22:43 UTC ( [id://358]=perlfunc: print w/replies, xml ) | Need Help?? |
printfSee the current Perl documentation for printf. Here is our local, out-dated (pre-5.6) version: printf - output a formatted list to a filehandle
printf FILEHANDLE FORMAT, LIST printf FORMAT, LIST
Equivalent to Don't fall into the trap of using a printf() when a simple print() would do. The print() is more efficient and less error prone. |
|