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.
18 lines
170 B
Go
18 lines
170 B
Go
|
6 days ago
|
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)
|
||
|
|
}
|