18 lines
228 B
Go
18 lines
228 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/thatguygriff/aoc2020/two"
|
|
)
|
|
|
|
func main() {
|
|
// Day 1
|
|
// fmt.Println(one.PartOne())
|
|
// fmt.Println(one.PartTwo())
|
|
|
|
// Day 2
|
|
fmt.Println(two.PartOne())
|
|
fmt.Println(two.PartTwo())
|
|
}
|