1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-15 23:54:16 +02:00
Files
go-profiler-notes/examples/stack-unwind-overhead/main.go
Felix Geisendörfer b393c68281 stack-unwind-overhead
2021-04-05 16:10:08 +02:00

19 lines
245 B
Go

// Package main is a code generator that creates functions of different size.
package main
import (
"fmt"
"os"
)
func main() {
if err := run(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
func run() error {
return nil
}