in reply to Re: Re: Re: Re: Optimizing the bejeezus out of a sub
in thread Optimizing the bejeezus out of a sub
#!/usr/bin/perl for(my $i=0;$i<4000;$i++) { print $i%10; }
$ strace -c -e write /tmp/t20 >/tmp/out % time seconds usecs/call calls errors syscall ------ ----------- ----------- --------- --------- ---------------- 100.00 0.000034 34 1 write ------ ----------- ----------- --------- --------- ---------------- 100.00 0.000034 1 total
|
|---|