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
8 lines
65 B
Go
8 lines
65 B
Go
package main
|
|
|
|
import "aoc2021/src"
|
|
|
|
func main() {
|
|
src.Day01()
|
|
}
|