• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package foo
2
3import (
4	"fmt"
5	"sync"
6)
7
8func sayhi(n int, wg *sync.WaitGroup) {
9	fmt.Println("hi", n)
10	fmt.Println("hi", n)
11	wg.Done()
12}
13