2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-17 09:25:32 +00:00
cheat.sheets/sheets/_go/go
terminalforlife d7473ac185 Fix trailing whitespace on all files
Tidy files; tidy soul!
2020-02-22 02:47:54 +00:00

17 lines
458 B
Plaintext

// Goroutines are lightweight threads (managed by Go, not OS threads).
// `go f(a, b)` starts a new goroutine which runs `f` (given `f` is a function).
//
// just a function (which can be later started as a goroutine)
func doStuff(s string) {
}
//
func main() {
// using a named function in a goroutine
go doStuff("foobar")
// using an anonymous inner function in a goroutine
go func (x int) {
// function body goes here
}(42)
}