I have a small app likefunc main() {start := time.Now()…fmt.Println(time.Since(start))}
where output is ≈400μs but the actual time is about 0.16s, I mean....
packages.Load(nil, "std")
in one of my modules run in an init(). Changed this piece into on-demand logic and now
real 0m0,010s user 0m0,001s sys 0m0,009s