start 2024, 2024-01
This commit is contained in:
13
2024/18.odin
Normal file
13
2024/18.odin
Normal file
@@ -0,0 +1,13 @@
|
||||
package aoc
|
||||
|
||||
import "core:fmt"
|
||||
import "core:log"
|
||||
import "core:os"
|
||||
|
||||
day18 :: proc() {
|
||||
input, ok := os.read_entire_file("input/01")
|
||||
if !ok {
|
||||
log.fatal("Failed to read input")
|
||||
}
|
||||
fmt.println("Solution for Day 18 is not implemented yet")
|
||||
}
|
||||
Reference in New Issue
Block a user