2012-07-15 17:44 UTC
My English is very poor, Try to explain the problem
(defun test2()
(setq a "OpenDcl is too powerful!!")
)
(defun c:test1()
(dcl_SendString "(test2)\n")
(setq a "OpenDcl is powerful!!")
)
Why after the completion of the c:test1,
variable a is "OpenDcl is too powerful!!" and not "OpenDcl is powerful!!".
How to let the variables A = "OpenDcl is powerful!!", According to order execution of c:test1.
Thanks..
(defun test2()
(setq a "OpenDcl is too powerful!!")
)
(defun c:test1()
(dcl_SendString "(test2)\n")
(setq a "OpenDcl is powerful!!")
)
Why after the completion of the c:test1,
variable a is "OpenDcl is too powerful!!" and not "OpenDcl is powerful!!".
How to let the variables A = "OpenDcl is powerful!!", According to order execution of c:test1.
Thanks..