diff options
author | San Jacobs | 2024-09-15 19:19:53 +0200 |
---|---|---|
committer | San Jacobs | 2024-09-15 19:19:53 +0200 |
commit | 8677bb0b5213e2ad4c890029b27b8756da114132 (patch) | |
tree | d72148d666832470c8215bc9d4868f8e609ba145 | |
parent | 90f807a2e6c5a960b1904b8aa4cba75557329d41 (diff) | |
download | better-report-8677bb0b5213e2ad4c890029b27b8756da114132.tar.gz better-report-8677bb0b5213e2ad4c890029b27b8756da114132.tar.bz2 better-report-8677bb0b5213e2ad4c890029b27b8756da114132.zip |
Removed needless comment
-rwxr-xr-x | main.odin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ main :: proc() { output_file_handle, _ := os.open(output_file_name, os.O_CREATE, 0o777)
os.close(output_file_handle)
output_file_handle, _ = os.open(output_file_name, os.O_RDWR, 0o777)
- os.write_string(output_file_handle, total_output) // TODO: Figure out how to write this to a file
+ os.write_string(output_file_handle, total_output)
os.close(output_file_handle)
fmt.printf("Wrote file: {}\n", output_file_name)
|