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
2021-12-04 22:34:55 +01:00

19 lines
284 B
Go

package main
import (
"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()
}