Search found 85 matches

by marcoxa
Thu Apr 23, 2009 11:11 pm
Forum: User Groups and Conferences
Topic: ELS 2009 in Milan - Early bird registration ends tomorrow
Replies: 0
Views: 19805

ELS 2009 in Milan - Early bird registration ends tomorrow

Apologies for multiple postings.... ************************************************************************ 2nd European Lisp Symposium (ELS 2009) Milan, Italy, May 27-29, 2009 Universita` degli Studi di Milano-Bicocca http://www.european-lisp-symposium.org *****************************************...
by marcoxa
Tue Feb 17, 2009 5:05 am
Forum: Common Lisp
Topic: Discussion on possible lambda syntax: Good or Evil?
Replies: 17
Views: 32466

Re: Discussion on possible lambda syntax: Good or Evil?

Evil. IMHO. No questions about it.

The only reason to have something like this is to make CL more Perl-ish (thus raising the self-esteem of Lisp programmers, which may be a worthy goal after all) :mrgreen:

Cheers
--
Marco
by marcoxa
Wed Jan 21, 2009 2:20 pm
Forum: Common Lisp
Topic: Extended Submission Deadline for ELS 2009
Replies: 0
Views: 6474

Extended Submission Deadline for ELS 2009

The submission deadline for ESL 2009 has been extended until February 4th. Check details at http://www.european-lisp-symposium.org

Cheers
--
Marco Antoniotti
Local Organizing Committee ELS 2009
by marcoxa
Tue Sep 02, 2008 8:24 am
Forum: Common Lisp
Topic: How to split project into multiple files
Replies: 6
Views: 15370

Re: How to split project into multiple files

... If you just want to keep it simple and don't want to mess around with asdf etc, you can just do like this: Define the helper function load-relative: (defun load-relative (filename) (load (compile-file (format nil "~A~A" (directory-namestring *load-truename*) (pathname-name filename)))...
by marcoxa
Fri Aug 15, 2008 9:16 am
Forum: Common Lisp
Topic: Begginer questions
Replies: 4
Views: 10225

Re: Begginer questions

Common Lisp has several implementations, but what is in fact an implementation of Common Lisp? An implementation of Common Lisp is one that is conforming with the ANSI Common Lisp standard, which you can see in the Common Lisp Hyperspec (usually referred to as the CLHS) What are the major differenc...