go / src /cmd /compile /internal /ssa /testdata /sayhi.go
AbdulElahGwaith's picture
Upload folder using huggingface_hub
e36aeda verified
package foo
import (
"fmt"
"sync"
)
func sayhi(n int, wg *sync.WaitGroup) {
fmt.Println("hi", n)
fmt.Println("hi", n)
wg.Done()
}