diff options
author | c+1 | 2023-05-23 16:26:16 -0400 |
---|---|---|
committer | c+1 | 2023-05-23 16:26:16 -0400 |
commit | 168417d4102de373ad0696ed3ab846f54226e570 (patch) | |
tree | 2a0c8c2c961ae34d337eb2bcd73b82e3050a520b /src | |
parent | 20f57669d9a7574cb65d1a716f6b1071a8d72810 (diff) |
fixed the things that were broken
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ int main(int argc, char* argv[]) { long fsource_size; char *source; - fsource = fopen ("examples/simple.halk", "rb"); + fsource = fopen ("examples/hello.halk", "rb"); if (!fsource) { log_err("Source file not found"); exit(1); |