19 lines
359 B
Text
19 lines
359 B
Text
#module_parameters(RUN_TESTS := false);
|
|
|
|
#load "base.jai";
|
|
#load "utils.jai";
|
|
#load "memory.jai";
|
|
#load "macros.jai";
|
|
#load "array.jai";
|
|
|
|
|
|
#scope_module;
|
|
|
|
basic :: #import "Basic";
|
|
compiler :: #import "Compiler";
|
|
|
|
#if RUN_TESTS {
|
|
// so files within this module can use 'test' without directly importing it.
|
|
test :: #import,file "test/module.jai";
|
|
}
|
|
|