On Thu, Sep 17, 2009 at 12:54 AM, Eduardo Costa
<
eduardo.m.costa@...> wrote:
>
> Is it possible/viable to embed scala in mobile devices (like embedded ones)?
> I haven't found anything similar on this mailing list... I want a better
> solution than "get yourself a Java VM".
Scala is a language and compiler that produces Java bytecode. You
absolutely will need a Java VM to run it.
And further, a fairly powerful JVM. The J2ME JVMs found in mobile
phones cannot run Scala code, basically because of their restricted
java API (eg no reflection) and 1.1 class version format.
-Ben