mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 22:30:47 +00:00
12 lines
124 B
Go
12 lines
124 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkMain(b *testing.B) {
|
||
|
os.Stdout, _ = os.Open(os.DevNull)
|
||
|
main()
|
||
|
}
|