Skip to content

Instantly share code, notes, and snippets.

@horzu
Created March 17, 2022 10:31
Show Gist options
  • Save horzu/009c7f5bf7ecb1690e3b3cd27c746228 to your computer and use it in GitHub Desktop.
Save horzu/009c7f5bf7ecb1690e3b3cd27c746228 to your computer and use it in GitHub Desktop.
Concurrency in Go: Go routines example - 1
package main
import (
"fmt"
"time"
)
func main() {
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