Compare commits
2 Commits
26700f9f9e
...
39fbae8866
| Author | SHA1 | Date |
|---|---|---|
|
|
39fbae8866 | 6 days ago |
|
|
7a362b5af3 | 6 days ago |
@ -0,0 +1,17 @@
|
||||
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)
|
||||
}
|
||||
Loading…
Reference in New Issue