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()) }