14 lines
241 B
Odin
14 lines
241 B
Odin
package aoc
|
|
|
|
import "core:fmt"
|
|
import "core:log"
|
|
import "core:os"
|
|
|
|
day22 :: proc() {
|
|
input, ok := os.read_entire_file("input/01")
|
|
if !ok {
|
|
log.fatal("Failed to read input")
|
|
}
|
|
fmt.println("Solution for Day 22 is not implemented yet")
|
|
}
|