about summary refs log tree commit diff
path: root/users/wpcarro/go/waitgroups.go
blob: 816321b8770f5f3e7ab75be51beb7801470838b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package main

import (
	"fmt"
	"sync"
	"time"
)

func saySomething(x string, wg *sync.WaitGroup) {
	defer wg.Done()
	fmt.Println(x)
	time.Sleep(time.Second)
	fmt.Printf("Finished saying \"%s\"\n", x)
}

func main() {
	var wg sync.WaitGroup
	var things = [5]string{"chicken", "panini", "cheeseburger", "rice", "bread"}
	for i := 0; i < 5; i += 1 {
		wg.Add(1)
		go saySomething(things[i], &wg)
	}
	wg.Wait()
}