mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
9 lines
92 B
Go
9 lines
92 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(len(make(chan int, 10)))
|
|
} |