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

12 lines
100 B
Go
Raw Normal View History

2023-11-15 13:28:22 +01:00
package main
import "fmt"
func main() {
fmt.Println("GoFast!")
}
func Part1() int {
return 0
}