Another one is that how to run it with the function which I defined and how
to give the argument? For example: when I define a function somthing like
(GGCD a b) which will return the GCD of the argument a and b, when I run
it with (GGCD 5 10), it show the message ==> *cancel* why?
follow is my program:
(DEFUN GGCD(a b)
(IF (ZEROP (MOD a b)) b
(GGCD b (MOD a b)))
)
May somebody can give me any suggestion about how to handle it under
autolisp, thanks a lot.
--
Chian-Shun, Suen
My e-mail adrress: r552...@cc.ntu.edu.tw
This is because AutoCAD 's AutoLISP does not have the MOD function
First of all, it's better to ask such questions in comp.cad.autocad
and not in comp.lang.lisp.
Wherever, your function can't work, because the AutoLISP modulo
function is called REM and not MOD:
(defun ggcd (a b)
(if (zerop (rem a b))
b
(ggcd b (rem a b))
)
)
AutoLISP is based on XLISP from David Betz. Look at comp.lang.lisp.x.
If you need info about AutoLISP, read the AutoLISP-FAQ from Reini
Urban in comp.cad.autocad or
http://xarch.tu-graz.ac.at/autocad/news/faq/autolisp.html,
it's really worth reading.
Hope this info helps,
Chris
--
*********************************************
Christoph Candido
E-Mail: h854...@edv1.boku.ac.at
University of Agricultural Sciences
Vienna, Austria
*********************************************