| author | |
| committer | |
| log | e85e7ebcf0d3e47f0766a13233daa26eb0a9e277 |
| tree | dee3a374b12b7e8039a4962b772ad5d28176e843 |
| parent | 4b9e1dd438827c054adc5316a0ccaf62486ac66c |
1 files changed, 2 insertions(+), 4 deletions(-)
std/bootstrap.zig+2-4| ... | ... | @@ -29,8 +29,6 @@ fn call_main() unreachable => { |
| 29 | 29 | const ptr = argv[i]; |
| 30 | 30 | args[i] = ptr[0...strlen(ptr)]; |
| 31 | 31 | } |
| 32 | // TODO: replace the i32 cast with: | |
| 33 | // main(args) %% exit(1) | |
| 34 | // exit(0) | |
| 35 | exit(i32(main(args))) | |
| 32 | main(args) %% exit(1); | |
| 33 | exit(0); | |
| 36 | 34 | } |