Search the Community
Showing results for tags 'while function'.
-
hi frids, if there is any other way to do this program in simply..please help me plpl.csv
-
Hi all, I'm stuck inside the while loop and can't come out of it. Can someone help me on this (if possible please provide information on why its not closing). This is just a small function of a much larger lisp that I'm playing with and Esc to exit means complete program termination. Here is...
- 14 replies
-
Feedback On Code That allows only 5 digit interger input.
Reu posted a topic in AutoLISP, Visual LISP & DCL
Just experimenting with the 'while' function and looking for feedback as to the quality of my coding. (defun c:test (/) (setq count 0) (setq 5dig (getint "\nEnter a 5 digit number: ")) ;_Enter a 5 digit number. (while (/= count 5) (setq 5dig (getint "\nTry again, please enter a 5 dig...