Skip to content

Instantly share code, notes, and snippets.

@horzu
Created March 17, 2022 11:43
Show Gist options
  • Save horzu/496c570bc40dcb3f5e0a441a7662c77e to your computer and use it in GitHub Desktop.
Save horzu/496c570bc40dcb3f5e0a441a7662c77e to your computer and use it in GitHub Desktop.
Concurrency in Go: Go routines example - 1
package main
import (
"fmt"
"time"
)
func main() {
go counter("first")
counter("second")
}
func counter(rank string) {
for i := 1; ; i++ {
fmt.Println(i, rank)
time.Sleep(time.Second * 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment