TomTolleson Posted February 27 Share Posted February 27 Hello! My apologies if there is a better thread for this topic, but I am wanting to organize a composition to reference other files (one which will contain lists which are large enough to be unwieldy and the other for my functions). Approaching this with ADSF would have me creating a system to load. Something like: (defsystem "composition-lisp" :description "composition-lisp: Tom trying to organize and load multiple files." :version "0.0.1" :author "Tom Tolleson <tom@example.com>" :licence "Public Domain" :depends-on ("optima.ppcre" "command-line-arguments") :components ((:file "/common-lisp/composition-lisp/composition-lisp.ads") (:file "macros" :depends-on ("packages")) (:file "hello" :depends-on ("macros")))) However, I'm wanting to do things in the most simple way possible and I'm sure I've missed it. I'm happy to delete this and repost as a comment in a more appropriate thread if needed. Thanks, THT Quote Link to comment Share on other sites More sharing options...
Stephane Boussuge Posted February 28 Share Posted February 28 Hi Tom, you can create as many different .opmo files you want with your functions etc... and load them with the load function from your main master file. Best. Stéphane TomTolleson 1 Quote Link to comment Share on other sites More sharing options...
TomTolleson Posted February 28 Author Share Posted February 28 Much easier! Thank you! Quote Link to comment Share on other sites More sharing options...
JulioHerrlein Posted February 28 Share Posted February 28 Dear Tom, You can go like this: (load "/Users/osxname/Opusmodus/Quick Start/name_of_the_file.opmo") Best, Julio Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.