Re: RFC 230 (v1) Replace Cformat built-in with pragmatically-inducedCformat function

2000-09-18 Thread Damian Conway
print format $fmt, @stuff; Early brain-dump. This should be it. That's what I've done for the second version (on its way soon). Damian

Re: RFC 230 (v1) Replace Cformat built-in with pragmatically-inducedCformat function

2000-09-15 Thread Nathan Wiger
I loathe the indirect object syntax. Well that makes one of us! ;-) Easy. Put them in a subroutine: sub format1 { format $template1, @data }; sub format2 { print STDERR format $template1, @data }; # etc. Gag! Cough! Ack! :-} Not trying to be mean, but this