shad-go/lectures/11-runtime/example/main.go
2022-04-21 01:22:13 +03:00

12 lines
112 B
Go

package main
import (
"fmt"
"os"
"time"
)
func main() {
fmt.Println(os.Getpid())
time.Sleep(time.Hour)
}