From 8677bb0b5213e2ad4c890029b27b8756da114132 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Sun, 15 Sep 2024 19:19:53 +0200 Subject: Removed needless comment --- main.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.odin b/main.odin index bcb21c9..65d8c63 100755 --- a/main.odin +++ b/main.odin @@ -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) -- cgit v1.2.1