initial commit

This commit is contained in:
specCon18 2023-12-18 03:40:05 -05:00
commit 493ce92e02
62 changed files with 1213 additions and 0 deletions

33
goroutines/goroutines.go Normal file
View file

@ -0,0 +1,33 @@
package main
import (
"fmt"
"time"
)
func f (from string){
for i := 0; i<3; i++ {
fmt.Println(from,":",i)
}
}
func main(){
//suppose we have function call f(s)
//here is how wed call that in the usual way
//running it synchronously
f("direct")
//To invoke this function in a goroutine, use go f(s)
//This new goroutine will execute concurrently with the calling one
go f("goroutine")
//you can also start a goroutine for an anonymous function call
go func (msg string) {
fmt.Println(msg)
}("going")
//our two function calls are running async in seperate goroutines now.
//wait for them to finish (for a most robust approach use a WaitGroup)
time.Sleep(time.Second)
fmt.Println("done")
}