On Jul 19, 4:22 pm, Sy <
mapobri...@gmail.com> wrote:
> Is it possible at all, or is there
> any attempt to bring CAL to Google Android platform?
Informally speaking, there are two levels of CAL support -- full
support means being able to compile CAL and run the REPL (known as
ICE). This isn't possible on (e.g.) Google App Engine, as AppEngine's
security manager doesn't allow some class loader related operation
required by CAL.
You can compile any CAL module to a jar file where each public
function is a static method on a class. Calling these methods requires
a smaller part of the CAL runtime, and that works fine on Google
AppEngine.
From reading the Wikipedia page on Dalvik, I think CAL would run on it
-- as long as Dalvik supports enough of the standard J2SE library.
I've just started downloading the Android SDK, but whether I actually
find the time to experiment is another question!
Tom