From: Cory Spencer <[EMAIL PROTECTED]>
   Date: Fri, 22 Apr 2005 10:45:17 -0600 (MDT)

   > -> (defun (square x) (* x x))
   > [...]
   > *** ERROR: SQUARE is not a function name
   >
   > Is that because (a) that's not implemented yet or (b) I'm doing
   > something wrong? I haven't found the time to delve into the source
   > yet.

   Oops, that wasn't supposed to have made it in there - I haven't finished 
   up macros yet, and as (defun ...) is a macro construct, it doesn't work 
   properly (at the moment it's just a useless stub).

This is Scheme syntax; for Common Lisp, you want the following:

        (defun square (x) (* x x))

Which, because DEFUN is a stub, doesn't work either . . .

                                        -- Bob Rogers
                                           http://rgrjr.dyndns.org/

Reply via email to