adventofcode-go/adventofcode.go

18 lines
268 B
Go
Raw Permalink Normal View History

2023-11-20 10:24:44 +01:00
package main
import (
"adventofcode/Y22"
"adventofcode/helpers"
"github.com/fatih/color"
)
func main() {
runY22()
}
func runY22() {
color.HiYellow("\n--- Advent of Code 2022 ---\n\n")
helpers.PrintDayResults(Y22.Day1())
helpers.PrintDayResults(Y22.Day2())
}