This repository has been archived on 2021-12-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
adventofcode/cmd/main.go
T

22 lines
349 B
Go

package main
import (
"adventofcode/pkg/four"
"adventofcode/pkg/one"
"adventofcode/pkg/three"
"adventofcode/pkg/two"
"fmt"
)
func main() {
fmt.Println("🎄 MERRY CHRISTMAS 🎄")
fmt.Println("Day 1️⃣")
one.Run()
fmt.Println("Day 2️⃣")
two.Run()
fmt.Println("Day 3️⃣")
three.Run()
fmt.Println("Day 4️⃣")
four.Run()
}