大家好,
我正在编写一些代码来帮助解决我的工作量,
很多时候我都在为大计划工作,所以
我命名ucs是为了让生活更轻松。
问题是,我已经编写了下面发布的代码,但它没有
似乎有效-有人能告诉我哪里错了吗?
- ;*******************************************************************
- ;*******************************************************************
- ;** **
- ;** THIS ROUTINE IS FOR RESTORING **
- ;** A NAMED UCS AND RUNNING THE **
- ;** PLAN COMMAND AT THE SAME TIME **
- ;** **
- ;** **
- ;** (C) PETER SMITH 03-02-2009 **
- ;** PROVIDED FOR USE BY ALL PLEASE **
- ;** INCLUDE THIS HEADER WHEN COPYING **
- ;** **
- ;** CONTACT TO REPORT PROBLEMS: skipsophrenic@hotmail.com **
- ;** **
- ;*******************************************************************
- ;*******************************************************************
- defun c:ucsplan () ;defined function
- (command "ucs" "na" "re") ;runs the ucs restore option
- (getstring "\nName of ucs:") ;asks for the name of the ucs wanted
- (command "Plan" "C") runs the plan command and set's it to current ucs
- )
- (princ)
|