mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 21:59:05 +08:00
10 lines
104 B
Go
10 lines
104 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(runtime.GOMAXPROCS(0))
|
|
} |