what meaning

Discussion in 'AutoCAD' started by caduser, Aug 21, 2003.

  1. caduser

    caduser Guest

    what meaning between

    (defun c:xx () = without /

    (defun c:xx (/) = width /

    (defun c:xx ( / aaa )

    (defun c:xx ( zzz / aaa)
     
    caduser, Aug 21, 2003
    #1
  2. caduser

    randy benson Guest

    Meaning no arguments & no local variables
    No arguments, 1 local variable named 'aaa'.
    The 'c:' means the function can be called from the command line as 'xx'. I'm
    not sure that you can have such a function with an argument, but that's what
    the 'zzz' is.
     
    randy benson, Aug 21, 2003
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.