Concurrency in Go is handled by Goroutines.

go
go func() {
    fmt.Println("Running in a goroutine")
}()