Archived
15 lines
163 B
Go
15 lines
163 B
Go
package main
|
|
|
|
import (
|
|
"adventofcode/pkg/one"
|
|
"adventofcode/pkg/two"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Day 1")
|
|
one.Run()
|
|
fmt.Println("Day 2")
|
|
two.Run()
|
|
}
|