Re: has anyone actually read this?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: has anyone actually read this?
- From: Adriano Ferreira <a.r.ferreira@...>
- Date: 2005年3月24日 09:41:57 -0300
On 2005年3月24日 12:05:33 +0100, PA <petite.abeille@gmail.com> wrote:
> Alternatively, what about a Java written in Lua (same syntax, different
> implementation)? 8^)
That should be pretty hard. Lua's design is minimalist, a virtual
machine with around 36 instructions, optimized for Lua organization.
Java's design has the damned primitive types (with well defined
types), support for threads and synchronization, and the compiled
bytecode form of Java programs is part of the specification which
tries to guarantee the same behavior everywhere. This does not fit
Lua's implementation very well. A Java written in Lua to the last
details would be a very boring and probably inefficient thing. But who
needs Java anyway?
Adriano.