Go Routines

Concurrency in Go is handled by Goroutines. go Copy go func() { fmt.Println("Running in a goroutine") }()