From 2d3428c8096c27c0c499f0c89ef92b8c306b644e Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 9 Feb 2020 01:02:19 +0000 Subject: Practice concurrency in golang Uploading some snippets I created to help me better understand concurrency in general and specifically concurrency in golang. --- go/waitgroups.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 go/waitgroups.go (limited to 'go/waitgroups.go') diff --git a/go/waitgroups.go b/go/waitgroups.go new file mode 100644 index 000000000000..816321b8770f --- /dev/null +++ b/go/waitgroups.go @@ -0,0 +1,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() +} -- cgit 1.4.1