Junior — Senior
How does the GOMAXPROCS limit affect program output
livecode
Task condition
What will be printed when executing the following code?
func main() {
runtime.GOMAXPROCS(1)
go func() {
fmt.Println("I'm a skilled Go developer")
}()
for {
}
}