2024-01-29 23:13:33 here's something cool i discovered by accident. first i wrote a load stack so that you can have, in one file, " anotherfile.fs" load, and of course that does what you expect 2024-01-29 23:14:08 the neat thing is that at startup i just iterate argv from argc-1 to 1 and push the command line args in reverse order 2024-01-29 23:14:44 so the intent is when you write "./zelgoforth one.fs two.fs three.fs" it pushes three.fs, then two.fs, then one.fs, so it ends up parsing them left to right 2024-01-29 23:15:00 what's neat is that i accidentally created a meta forth command at the command line layer 2024-01-29 23:15:43 you can imagine one.fs, two.fs, three.fs as higher layer forth words, and now it looks like any regular forth word