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
This commit is contained in:
2021-12-10 13:46:41 -06:00
parent 21b9ccbfee
commit db06f5b5c6
4 changed files with 80 additions and 0 deletions

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "aoc2021/src"
func main() {
src.Day01()
}