about summary refs log tree commit diff
path: root/go/waitgroups.go
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-02-09T01·02+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-02-10T10·06+0000
commit2d3428c8096c27c0c499f0c89ef92b8c306b644e (patch)
tree219a212e751d9f6b38aeaa7f8519a5f03e07ccba /go/waitgroups.go
parent2af05f698c583bb71f318352e1da3b9ae2d1ae31 (diff)
Practice concurrency in golang
Uploading some snippets I created to help me better understand concurrency in
general and specifically concurrency in golang.
Diffstat (limited to 'go/waitgroups.go')
-rw-r--r--go/waitgroups.go24
1 files changed, 24 insertions, 0 deletions
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()
+}