codekingpro's picture
Add files using upload-large-folder tool
da86720 verified
Raw
History Blame Contribute Delete
137 Bytes
package foo
import (
"fmt"
"sync"
)
func sayhi(n int, wg *sync.WaitGroup) {
fmt.Println("hi", n)
fmt.Println("hi", n)
wg.Done()
}