finish day 3

This commit is contained in:
2025-12-05 22:51:17 -05:00
parent ca8f60698a
commit dea3b249eb
9 changed files with 1878 additions and 4 deletions

8
utils/utils.odin Normal file
View File

@@ -0,0 +1,8 @@
package utils
import "core:os"
read_file :: proc(s: string) -> string {
contents, _ := os.read_entire_file(s)
return string(contents)
}