Search found 3 matches
- Mon Mar 03, 2014 5:48 am
- Forum: Common Lisp
- Topic: Lisp for web application development
- Replies: 2
- Views: 5950
Re: Lisp for web application development
Hi, what you ask is certainly "possible", the actual question is: do solutions written in Lisp exist out of the box? Personally I don't know. Given my background, I'd approach the problem by using ABCL and Apache POI ( http://poi.apache.org/ ) to manipulate the files. There is a blog post ...
- Sun Feb 26, 2012 1:28 pm
- Forum: Common Lisp
- Topic: Load a LISP Application into Java
- Replies: 6
- Views: 9793
Re: Load a LISP Application into Java
I have contributed code to ABCL in the past and I know it quite well. Perhaps I can help you. Also if you use IRC you can find some ABCL people on the #abcl channel on Freenode. ABCL is a fully ANSI-compliant CL implementation. That means that ANSI CL code should run there without hassles. However, ...
- Thu Jun 30, 2011 2:26 pm
- Forum: Common Lisp
- Topic: State of user extensible sequences
- Replies: 3
- Views: 5926
Re: State of user extensible sequences
Ok, just after I posted this I found that SBCL seems to have this extension. In fact Christophe Rhodes, the author of the extensible sequences paper, is an SBCL developer and quite famous Lisper. But something is not working. When defining (defclass my-seq (sequence) ()) I cannot use #'make-instanc...