Search found 11 matches

by j831526
Mon Nov 10, 2014 4:36 pm
Forum: Common Lisp
Topic: Newbie problem - defun
Replies: 2
Views: 6823

Newbie problem - defun

Following is from my CCL REPL: ? (defun my-half (x) (* (x 0.5))) ;Compiler warnings : ; In MY-HALF: Undefined function X ; In MY-HALF: Unused lexical variable X MY-HALF ? (my-half 8) > Error: Undefined function X called with arguments (0.5) . > While executing: MY-HALF, in process Listener(4). > Typ...