8 lines
94 B
Go
8 lines
94 B
Go
package parallel
|
|
|
|
var routineCount int = 4
|
|
|
|
func SetRoutineCount(n int) {
|
|
routineCount = n
|
|
}
|