home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
autocad
/
may91.arj
/
TIP657B.LSP
< prev
next >
Wrap
Text File
|
1991-05-13
|
252b
|
13 lines
;TIP657B.LSP Altered version of TIP657 (c)1991, CADalyst Magazine
(defun LTOA2 (QL / FH)
(setq FH (open "temp.txt" "w"))
(prin1 QL FH)
(close FH)
(setq FH (open "temp.txt" "r"))
(setq QL (read-line FH))
(close FH)
QL
)