You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go_mqtt/FullCpu.go

18 lines
170 B
Go

package main
import "time"
func test_print(a int) {
for {
}
}
func main() {
for i := 0; i < 100; i++ {
go test_print(i)
}
time.Sleep(360000000*time.Second)
}