Re: What is Expressiveness in a Computer Language
- From: Pascal Costanza <pc@xxxxxxxxx>
- Date: Tue, 27 Jun 2006 23:46:03 +0200
Joe Marshall wrote:
Yes, but in testing I found an incompatability. Here's a better
definiton:
(defun noisy-apply (f &rest args)
(format t "~&Applying ~s to ~s." f (apply #'list* args))
(apply f (apply #'list* args)))
This should be as follows, shouldn't it?
(defun noisy-apply (f &rest args)
(format t "~&Applying ~s to ~s." f (apply #'list* args))
(apply f args))
Pascal
--
3rd European Lisp Workshop
July 3 - Nantes, France - co-located with ECOOP 2006
http://lisp-ecoop06.bknr.net/
.
- Follow-Ups:
- Re: What is Expressiveness in a Computer Language
- From: Juho Snellman
- Re: What is Expressiveness in a Computer Language
- From: Joe Marshall
- Re: What is Expressiveness in a Computer Language
- Prev by Date: Re: apparently undefined function called by macro
- Next by Date: Which Lisp for a Go-Client?
- Previous by thread: Re: What is Expressiveness in a Computer Language
- Next by thread: Re: What is Expressiveness in a Computer Language
- Index(es):