pid/main.go
2018-05-04 16:18:28 -07:00

11 lines
81 B
Go

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