pid/main.go

11 lines
81 B
Go

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