Advent-of-Code/2021/day3/main.go

11 lines
100 B
Go

package main
import "fmt"
func main() {
fmt.Println("GoFast!")
}
func Part1() int {
return 0
}