14 lines
148 B
Go
14 lines
148 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"runtime"
|
||
|
|
|
||
|
|
"go.uber.org/automaxprocs/maxprocs"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
maxprocs.Set()
|
||
|
|
fmt.Print(runtime.GOMAXPROCS(0))
|
||
|
|
}
|