Hughes, Andrew wrote:
> I am having a problem making printf work correctly. The following line of
> code:
>
> printf("\$%4.2\n", $subtotal);you're missing a field type option in your format statement. printf "\$%4.2f\n", $subtotal; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
