18 lines
268 B
Go
18 lines
268 B
Go
|
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())
|
||
|
}
|