Go's concurrency model uses goroutines (lightweight threads) and channels (typed message pipes) to build efficient concurrent programs.## Goroutines```gofunc main() {    go sayHello() // Lau