View Full Version : trying to remember
PHOTOS4ME
2005-01-18, 06:01 PM
I was taught basic AutoLISP writing while going to school in '94-'95 but haven't used it since. What would be a good references to obtain?
For the time being can anyone tell me how to put a return into a lisp.
scwegner
2005-01-18, 06:39 PM
I was taught basic AutoLISP writing while going to school in '94-'95 but haven't used it since. What would be a good references to obtain?
For the time being can anyone tell me how to put a return into a lisp.
Try www.afralisp.com It a good general simple reference and it's free.
Tom Beauford
2005-01-18, 08:51 PM
The first spot to look is here of course because it's always free. Start with this one from the archive: http://www.augi.com/education/detail.asp?Source=Archive&CourseId=49
Empty quotes inside a command sequence (command "") would probably do the trick, if not just put the code up here for us to debug.
I was taught basic AutoLISP writing while going to school in '94-'95 but haven't used it since. What would be a good references to obtain?
For the time being can anyone tell me how to put a return into a lisp.
Mike.Perry
2005-01-18, 09:49 PM
What would be a good references to obtain? Hi
A quick simple Forum Search (http://forums.augi.com/search.php?) returned the following threads among others -
Learning Lisp (http://forums.augi.com/showthread.php?t=4657)
Visual Lisp Books? (http://forums.augi.com/showthread.php?t=9212)
Have a good one, Mike
CAB2k
2005-01-19, 02:54 AM
For the time being can anyone tell me how to put a return into a lisp.
There is no RETURN in lisp.
Flow must proceed to end of the lisp or you can quit the lisp with EXIT or QUIT.
You must learn to use the branch functions.
(defun Myroutine()
(if true
(progn
(do you stuff here)
)
;; ELSE do nothing & return
)
;; end of procedure so return
)
vBulletin® v3.6.7, Copyright ©2000-2009, Jelsoft Enterprises Ltd.