Search found 7 matches
- Mon Mar 12, 2012 8:40 am
- Forum: Other Dialects
- Topic: [Announce] Java-Version of PicoLisp
- Replies: 2
- Views: 32763
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....
- Mon Jan 16, 2012 7:27 am
- Forum: The Lounge
- Topic: Average Lisp age?
- Replies: 36
- Views: 547679
Re: Average Lisp age?
OK, so let me push it up 
I'm 58

I'm 58
- Thu Jan 12, 2012 10:08 am
- Forum: Common Lisp
- Topic: labyrinth
- Replies: 2
- Views: 5690
Re: labyrinth
You might take a look at: http://rosettacode.org/wiki/Maze_generation#Common_Lisp and http://rosettacode.org/wiki/Maze_solving
- Alex
- Alex
- Sun Jan 02, 2011 11:06 am
- Forum: Other Dialects
- Topic: [Announce] Java-Version of PicoLisp
- Replies: 2
- Views: 32763
[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...
- Sat Jul 10, 2010 7:17 am
- Forum: The Lounge
- Topic: L-99: Ninety-Nine Lisp Problems
- Replies: 3
- Views: 10689
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.
now on: http://home.picolisp.com -> Examples -> Ninety-Nine Lisp Problems.
- Mon Apr 12, 2010 9:44 am
- Forum: Common Lisp
- Topic: Macros considered harmful
- Replies: 10
- Views: 14226
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...
- Thu Feb 18, 2010 4:03 am
- Forum: The Lounge
- Topic: Why is cons-cell-notation infixed?
- Replies: 2
- Views: 9683
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...