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

15 lines
163 B
Go
Raw Normal View History

2021-12-01 11:41:37 +01:00
package main
2021-12-02 12:47:13 +01:00
import (
"adventofcode/pkg/one"
"adventofcode/pkg/two"
"fmt"
)
2021-12-01 11:41:37 +01:00
func main() {
2021-12-02 12:47:13 +01:00
fmt.Println("Day 1")
2021-12-01 11:41:37 +01:00
one.Run()
2021-12-02 12:47:13 +01:00
fmt.Println("Day 2")
two.Run()
2021-12-01 11:41:37 +01:00
}