Search code examples
c++cmobilejava-meinterpreter

C/C++ J2ME interpreter


do anyone know some C or C++ interpreter for cell phones? I have Nokia 5310 and found some Basic interpreter (CellBasic) and want to develop in C or C++ on the go. Or, does anybody knows Scheme J2ME intepreter?


Solution

  • You don't want to do a C interpreter in J2ME unless you first compile it to bytecode elsewhere: you'd waste a lot of space with the parser.

    If you're interested, I have my own interpreter that's used by various people and companies called Hecl, at http://www.hecl.org

    It's fairly simple, but has commands to access a variety of things, and is under active development, with a nice user community.