On 21/11/2007, Stefan Nobis <[EMAIL PROTECTED]> wrote:

> It's not an inherent feature of the
> language that allows JIT.

That's not entirely true.

There are some languages (such as Perl) which have language features
which absolutely precludes JIT as we know it.

In Perl you can have a line of code that looks like:

@result = (dothis $foo, $bar);

which could be either of:

@result = (dothis($foo), $bar);
@result = dothis($foo, $bar);

And the correct choice can vary each time the line is executed.

cheers
stuart
_______________________________________________
computer-go mailing list
computer-go@computer-go.org
http://www.computer-go.org/mailman/listinfo/computer-go/

Reply via email to