From: Frank Buss on
chuckmcknight(a)gmail.com wrote:

> I'm trying to locate a version of Lisp / Scheme that has been ported
> to mobile devices (Symbian, Windows Mobile, Linux, etc.). Is anyone
> aware of an existing project / package or of anyone working on one?

GCL works on iPaq:

http://groups.google.com/group/comp.lang.lisp/msg/b9ca2daa08a6feaf

--
Frank Buss, fb(a)frank-buss.de
http://www.frank-buss.de, http://www.it4-systems.de
From: Graham on
On Feb 20, 11:06 am, "chuckmckni...(a)gmail.com"
<chuckmckni...(a)gmail.com> wrote:
> Hi All,
>
> I'm trying to locate a version of Lisp / Scheme that has been ported
> to mobile devices (Symbian, Windows Mobile, Linux, etc.). Is anyone
> aware of an existing project / package or of anyone working on one?
>
> Thanks!
>
> Charles McKnight


Here's how one Chicken Scheme user got results with his Sharp Zaurus:

http://www.mail-archive.com/chicken-users(a)nongnu.org/msg01187.html

Chris Double also has some older versions of Chicken available for the
Zaurus, IIRC.

Graham

From: Szabolcs Szucs on
Hi,

Ray Dillinger <bear(a)sonic.net> writes:

> chuckmcknight(a)gmail.com wrote:
>> Hi All,
>> [...]
> SISC is a scheme that runs on Standard Java, and java
> environments are directly supported by many mobile devices.
> Depending on how much memory your device has, it may be
> able to run SISC directly.
> http://sisc.sourceforge.net/
>
> Kawa, likewise, includes an implementation of scheme that
> runs in a standard java environment. It may be small enough
> to run on some mobile devices.
> http://www.gnu.org/software/kawa/index.html

I'm wondering how can I install a scheme interpreter like this on my
Nokia 9500? Is it possible at all? Is there a tutorial somewhere?

=--=
kotee




9BF6 00E9 0CA9 B3A8 5234 03DB 3FB3 F85B 0033 74D7
http://keyserver.noreply.org/pks/lookup?search=kotee%40elte.hu&fingerprint=on
From: jptmoore on
On Feb 21, 2:32 am, "Graham" <graham.fawc...(a)gmail.com> wrote:
> On Feb 20, 11:06 am, "chuckmckni...(a)gmail.com"
>
> <chuckmckni...(a)gmail.com> wrote:
> > Hi All,
>
> > I'm trying to locate a version of Lisp / Scheme that has been ported
> > to mobile devices (Symbian, Windows Mobile, Linux, etc.). Is anyone
> > aware of an existing project / package or of anyone working on one?
>
> > Thanks!
>
> > Charles McKnight
>
> Here's how one Chicken Scheme user got results with his Sharp Zaurus:
>
> http://www.mail-archive.com/chicken-us...(a)nongnu.org/msg01187.html
>
> Chris Double also has some older versions of Chicken available for the
> Zaurus, IIRC.
>
> Graham


In addition, here is a brief tutorial showing how to get Chicken
Scheme running on a Nokia 770.

http://chicken.wiki.br/chicken%20on%20handhelds

John.

From: Kjetil S. Matheussen on


On Wed, 21 Feb 2007, Szabolcs Szucs wrote:

> Hi,
>
> Ray Dillinger <bear(a)sonic.net> writes:
>
>> chuckmcknight(a)gmail.com wrote:
>>> Hi All,
>>> [...]
>> SISC is a scheme that runs on Standard Java, and java
>> environments are directly supported by many mobile devices.
>> Depending on how much memory your device has, it may be
>> able to run SISC directly.
>> http://sisc.sourceforge.net/
>>
>> Kawa, likewise, includes an implementation of scheme that
>> runs in a standard java environment. It may be small enough
>> to run on some mobile devices.
>> http://www.gnu.org/software/kawa/index.html
>
> I'm wondering how can I install a scheme interpreter like this on my
> Nokia 9500? Is it possible at all? Is there a tutorial somewhere?
>

You should ask on the Kawa mailing list. Chances are you'll get
a good response withing minutes, the support for kawa is really great.
Kawa is a bit weird though, so you might want to look at other java
implementations as well, especially if you have a deadline on what
you are about to do.

sisc is the least unschemish java-scheme, bigloo is the fastest, kawa
might be the scheme with the best support from the author, sixx
is without any comparison the smallest (~21k!), and there is also jscheme,
which I haven't tried very much.

In speed comparison, I think it goes like this: 1. bigloo, 2. kawa, 3.
sisc, 4. jscheme, 5. sixx. Not too sure about the last three though, but
I guess it goes like that.

In size, I think it goes like this: (smallest to biggest):
1. sixx, 2. jscheme, 3. sisc, 4. bigloo, 5. kawa.