diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-29 06:26:49 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-29 06:26:49 +0330 |
commit | 258ad19e6e03e1f1a93e16972cac1096a2d93e04 (patch) | |
tree | 4294fe5a39f4d148a0a616884036284de6dbc590 /src/main.c | |
parent | f8019d33f61807de5369d78de6216427c56500dd (diff) |
add global variables
fix shadowing in different levels
better type checking
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -73,6 +73,7 @@ static int run(const char *filePath, const char *outFilePath) { int main(int argc, char *argv[]) { if (argc < 3) { + run("test/main.felan", "build/out"); printLog("Too few args"); return 1; } |