Include a file: Difference between revisions

Content deleted Content added
Added Quackery.
Line 2,050:
<lang Quackery>[ $ "myfile.qky" loadfile ] now!</lang>
 
To prevent a file called <code>myfile.qky</code> from being loaded and compiled more than once during a Quackery session (e.g. a library module that may be invoked during compilation of several other files) define a word called <code>myfile.qky</code> in the file <code>myfile.qky</code>. By convention, use this definition as the first wordline defined inof the file:
 
<lang Quackery>[ this ] is myfile.qky</lang>