- 积分
- 464
- 明经币
- 个
- 注册时间
- 2005-3-9
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
各位高手: 大家好!我现在遇到了一个关于lisp测试的问题。请大家帮忙指教一下。 怎么能让下面的一个个小程序用一个总的函数(母程序)来调用?就是不用一个个的在命令行去输入他,自己就可以一直执行下去。 我这两天就要用,去面试工作,请大家一定帮帮忙!谢谢了!!!!!
(defun c:lc1() (princ "\n") (princ "坐标测试") (princ "\n") (command "line" (list 0 0) (list 50 50) "") (command "erase" (entlast) "") (princ "\n") (princ "测试正常") (princ) ) ;
(defun c:lc2() (princ "\n") (princ "坐标测试") (princ "\n") (command "line" (0 0) (50 50) "") (command "erase" (entlast) "") (princ "\n") (princ "line指令指定点坐标输入有误!") (princ "\n") (princ "请输入正确点坐标") (princ) ) ; 错误: 函数错误: 0
(defun c:lc3() (princ "\n") (princ "坐标测试") (princ "\n") (command "line" (0,0) (50,50) "") (command "erase" (entlast) "") (princ "\n") (princ "line指令对(0,0)格式没有定义!") (princ "\n") (princ "请输入正确点坐标格式") (princ) ) ; 错误: no function definition: 0,0 |
|