Jump to content

How to define a function in AutoLISP with arbitrary arguments


Ahankhah

Recommended Posts

Do you mean 'optional' arguments?

 

For LISP, the answer is no, the number of arguments in the function definition must be supplied when calling the function - such arguments may be nil however:

 

(defun example ( arg1 arg2 arg3 )
 (print arg1)
 (print arg2)
 (print arg3)
 (princ)
)

 

(example "ABC" 123 nil)

Link to comment
Share on other sites

Do you mean 'optional' arguments?

Thank you Lee for correcting my writing. I learn from you more than programming:D.

Link to comment
Share on other sites

You can pass an unknown number of arguments in a list then have the function parse the list;

 

 
(defun example (aug1)

(foreach item aug1
(print item)
);_foreach
(princ)
);_defun

;;;Calling the function
(example ‘( “Hello” “Aloha” “Hola” “Ciao” “Guten Tag[color=black][font=Arial]”[/font][/color]))

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...