Measure the startup overhead of different programming languages
0

Configure Feed

Select the types of activity you want to include in your feed.

startup-overhead / true.go
54 B 5 lines
1package main 2import "os" 3func main() { 4 os.Exit(0); 5}