Files
2021/main.go
Parnic db06f5b5c6 Day 1 in Go
Purely for curiosity/benchmarking-against-identical-Rust-version reasons

Spoilers: Rust is somewhat faster than Go and very much faster than .net
...though presumably .net's problem is purely startup time
2021-12-10 13:46:41 -06:00

8 lines
65 B
Go

package main
import "aoc2021/src"
func main() {
src.Day01()
}