View Single Post
  #2  
Old 11-13-2017, 03:20 AM
Marten Marten is offline
Registered User
 
Join Date: Feb 2006
Location: Tilburg, The Netherlands
Posts: 139
Re: HELP! First Lisp Program & of Course Running into Errors

Yes, those errors can be hard to track down if your new to lisp. The problem in your file is that you have not named your local function and don't have any content in your ok-action:

Code:
    :local-functions '(    
        (create () 
            (sd-call-cmds    (create_workplane :new :name "Ring"))
        )
    )
    :ok-action '(create)
When you change to the code above your command loads without errors.

Regards,

Marten
Reply With Quote