newLISP Fan Club

Forum => Anything else we might add? => Topic started by: newdep on March 03, 2004, 11:12:31 AM

Title: Load equalvalent?
Post by: newdep on March 03, 2004, 11:12:31 AM
Hello Lutz,



Is there an equalvalent of 'load inside newlisp that does 'load the script,

evaluates it, but does NOT run the script ?



So it will load the script into a list (evaluated and sorted) so this list can

then be used (de-listed and executed by i.e. the script that loaded it).



Currently i can only think of using 'read-file for this and then rebuilding it

into a list...but then it still suffers from "rn" and is not evaluated into (fn) or

(lambda) functions...



Norman.
Title:
Post by: Lutz on March 03, 2004, 11:25:46 AM
you could put this in a file:



;; file: myprog.lsp ;;;;;;;;;;;;;;



(set 'myprog '(print "hello world"))



;; eof ;;





Now do a:



(load "myprog.lsp")



myprog => (print "hello world")



(eval myprog) => "hello world" ; return value

hello world                              ; output from running myprog



Lutz