Search found 7 matches

by abu
Mon Mar 12, 2012 8:40 am
Forum: Other Dialects
Topic: [Announce] Java-Version of PicoLisp
Replies: 2
Views: 18941

Re: [Announce] Java-Version of PicoLisp

> For command prompt to be able to compile java, we need jdk, right? Yes. > But after i installed jdk, the command prompt still can't recognize the java compiler command. What is the exact error message you get? Perhaps this post in the mailing list http://www.mail-archive.com/picolisp@software-lab....
by abu
Mon Jan 16, 2012 7:27 am
Forum: The Lounge
Topic: Average Lisp age?
Replies: 36
Views: 458069

Re: Average Lisp age?

OK, so let me push it up :)
I'm 58
by abu
Thu Jan 12, 2012 10:08 am
Forum: Common Lisp
Topic: labyrinth
Replies: 2
Views: 5208

Re: labyrinth

by abu
Sun Jan 02, 2011 11:06 am
Forum: Other Dialects
Topic: [Announce] Java-Version of PicoLisp
Replies: 2
Views: 18941

[Announce] Java-Version of PicoLisp

The PicoLisp distribution now also contains a plain Java version. It is called "Ersatz PicoLisp", because can run in environments where standard PicoLisp is not available, and because it lacks some of its features (see http://software-lab.de/ersatz/README ). Still, it implements the full P...
by abu
Sat Jul 10, 2010 7:17 am
Forum: The Lounge
Topic: L-99: Ninety-Nine Lisp Problems
Replies: 3
Views: 9543

Re: L-99: Ninety-Nine Lisp Problems

Yesterday I implemented about the first 40 of them in PicoLisp, so I posted them
now on: http://home.picolisp.com -> Examples -> Ninety-Nine Lisp Problems.
by abu
Mon Apr 12, 2010 9:44 am
Forum: Common Lisp
Topic: Macros considered harmful
Replies: 10
Views: 10632

Re: Macros considered harmful

Clisp is an example of a slow interpreter - when performance is important, comparison should be made to sbcl and clozure. Article contains a lot of misguided opinions - e.g. the compiler vs interpreter, data types, dynamic binding, macros. Sorry for being so late with my response, but I didn't know...
by abu
Thu Feb 18, 2010 4:03 am
Forum: The Lounge
Topic: Why is cons-cell-notation infixed?
Replies: 2
Views: 7101

Re: Why is cons-cell-notation infixed?

You have to be aware of the fact that the cons-cell-notation is a matter of S-expressions, not of Lisp code. The parentheses and the dot are meta-characters that describe the structure of data, and are on a lower level than the executable code they might represent. S-expressions by themselves are ne...