shad-go/lectures/10-runtime/example/main.go
2021-02-18 12:45:14 +03:00

12 lines
112 B
Go

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