What does go keyword actually do in Golang?

go dev.to

As we know, the go keyword runs goroutines. Or rather, this is how we often think about it. The go keyword in the Go programming language is one of its core elements, distinguishing it from other programming languages. It is used to launch a function in a separate goroutine. This allows the program to continue executing the current code without waiting for the invoked function to complete. In this article, we will examine the exact role of the go keyword and explore how its use affects program

Read Full Tutorial open_in_new
arrow_back Back to Tutorials