home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
APPS
/
CAD
/
PKEY11_1.ZIP
/
LP.LSP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1992-03-14
|
342 b
|
12 lines
;Load a lisp file in the default directory.
;
; ********Patrick J. McKee, author********
; ****Copyright 1992, Power Key tm****
;
(defun c:LP()
(PRINC "Name of lisp file to load: <")
(PRINC *lf1)
(SETQ lf1(GETSTRING ">: "))
(IF(= lf1 "")(SETQ lf1 *lf1)(SETQ *lf1 lf1))
(load lf1)
(princ))