day3, example

This commit is contained in:
efim
2023-12-03 07:14:21 +00:00
parent afde84519f
commit c9f9766866
4 changed files with 149 additions and 3 deletions

View File

@@ -3,11 +3,11 @@ package main
import (
"log"
"sunshine.industries/aoc2023/day2"
"sunshine.industries/aoc2023/day3"
)
func main() {
log.Print("> starting run:")
result := day2.Run()
log.Printf("day2 result: %d", result)
result := day3.Run()
log.Printf("day3 result: %d", result)
}