Author Topic: Executing an Express routine with values  (Read 1588 times)

0 Members and 1 Guest are viewing this topic.

bmossman

  • Guest
Executing an Express routine with values
« on: October 24, 2006, 08:40:23 AM »
Why won't this work?

Code: [Select]
(defun C:TC ()
(c:tcircle "l" "" "0.35" "s" "v")
(princ)
)

Chuck Gabriel

  • Guest
Re: Executing an Express routine with values
« Reply #1 on: October 24, 2006, 10:51:35 AM »
You are trying to pass parameters to a command-line function, which is not allowed.