I have 6 separate programs (all with their own lib folders) and I need to connect them to make one big program.
I started a new file that will call all of the programs. My setup basically looks like this:
Files: Main
Folder: Mainlib
Inside Mainlib Folder:
Files: None
Folders: Program1, Program2, Program3, Program4, Program5
Inside Each Program Folder:
Files: Program(num)
Folder: Program(num)lib
Inside Program(num) Folder:
Files: ProgramPart1, ProgramPart2, etc.
Folders: None
So, I started off in the Main file by doing:
Code: Select all
RUN {Mainlib/Program1/Program1.txt}
Is there a way to get around this?