|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
1 |
|
||
|
You can create a (relatively) small function in each file that you want to include other files into, as follows:
and then use it to include specific files - these are executed as if they were inline.
It basically opens the file, reads the entire contents into a string, then executes that string. There's no error handling on the I/O calls since this sort of stuff is usually done once on program start, and you want to fail if there's a problem including it. |
||||
