Archived
22 lines
349 B
Go
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()
|
|
}
|