rajeshmuthu Posted August 29, 2011 Posted August 29, 2011 I would like to learn to make lisp programs. Is there any way to get learning briefly. I am a new one to Auto lisp. Quote
Tharwat Posted August 29, 2011 Posted August 29, 2011 Here is a very good reference . http://www.afralisp.net/index.php Quote
BlackBox Posted August 29, 2011 Posted August 29, 2011 (edited) Plenty of books available also. My favorite book at the moment is David M. Stein's Visual LISP Developer's Bible, 2011 Edition... still only $6.99 from Amazon Also, don't forget about the LISP Developer Documentation, either F1 from VLIDE, or: (defun c:LISPDD () (c:LISPDeveloperDocumentation)) (defun c:LISPDeveloperDocumentation () (princ "\rLISP DEVELOPER DOCUMENTATION ") (vl-load-com) ((lambda (vrsn) (help (strcat "acad_dev" (cond ((vl-string-search "16.2" vrsn) "162") ; 2006 ((vl-string-search "17.0" vrsn) "170") ; 2007 ((vl-string-search "17.1" vrsn) "171") ; 2008 ((vl-string-search "17.2" vrsn) "172") ; 2009 ((vl-string-search "18.0" vrsn) "180") ; 2010 ((vl-string-search "18.1" vrsn) "181") ; 2011 ((vl-string-search "18.2" vrsn) "182"))))) ; 2012 (vlax-product-key)) (princ)) Edited August 29, 2011 by BlackBox Code simplified Quote
BIGAL Posted August 30, 2011 Posted August 30, 2011 After reading the books and help etc as a start set yourself a goal for a program in lisp best way to learn ! Start simple think about how you would do it manually and write down the steps, if it involves a lot of pt calculations draw a diagram so you know what variables you have used and where they are. If you have an idea of something you want post it here and at least you should get advice about how to approach the problem write some code then and help will follow. Quote
rajeshmuthu Posted September 7, 2011 Author Posted September 7, 2011 Thank you friend...I will follow the same Quote
ReMark Posted September 7, 2011 Posted September 7, 2011 More AutoLISP tutorials can be found here....http://www.jefferypsanders.com/autolisp.html Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.