On Fri, Dec 14, 2001 at 18:02:05 -0500, Doug McNaught wrote: > Darren Ferguson <[EMAIL PROTECTED]> writes:
> > Perl is an interpreted language. It does not convert into byte code. > Not true. You never see the byte code (it's more like an internal You can see the Bytecode: see the B::Bytecode module in your perl distribution. And to see optimisations, you could try the B::Deparse module -- and look at the other B::-modules. -Wolfgang
