Re: [Ecls-list] Simple Hello word! function

2010-07-05 Thread Louis Höfler
hello-wor... How do I convert this output back to plain text? Thank you, Louis. Von: Juan Jose Garcia-Ripoll [mailto:juanjose.garciarip...@googlemail.com] Gesendet: Sonntag, 4. Juli 2010 19:36 An: Pascal J. Bourguignon Cc: ecls-list@lists.sourceforge.net Betreff: Re: [Ecls-list] Simple

Re: [Ecls-list] Simple Hello word! function

2010-07-04 Thread Juan Jose Garcia-Ripoll
On Sun, Jul 4, 2010 at 7:32 PM, Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com wrote: Wow, I did not think about that. The other option, which is not that bad, is to create a REPL for that string. Even better, LOAD does this for you: cl_object string, stream; string =

[Ecls-list] Simple Hello word! function

2010-07-03 Thread Louis Höfler
Hello everyone. I wrote a simple (yet unstable and not tested) module for apache. It allows execution of lisp code like php code. You can download it here https://sourceforge.net/projects/mod-ecl/ However. I try to execute this simple function: (defun hello-world () (print Hello world!))