I am trying to load a batch-macro with load commands. The file structure looks like this:
- load_modules.e
- align_chars
- alignchars.e
- escape_string
- string_paste.e
load_modules.e is in the current directory and then alignchars.e is in the align-chars
directory which is at the same level as load_modules.e
When I try to load the bach macro I get this error:
"Path not found"
#pragma option(strict, on)
#include "slick.sh"
/**
* Load emulations and commands.
* Slick-C batch macro.
*/
defmain() {
load("align_chars\\alignchars.e");
load("escape_string\\string_paste.e");
return 0;
}