Golang Go Func

    go func(msg string) {
        for i := 0; i < 3; i++ {
        fmt.Println(from, ":", i)
    }
    }("going")
TindyC