GO Playground

If you want to try GO, you can do it using the GO Playground, you don’t need to install anything to use it, you only need to open your browser, I recommend using google chrome because GO works better in Google Chrome.

Open your browser, go to the URL https://golang.org and then access the GO Playground directly with the following URL https://go.dev/play/.

/*
This file has the hello world application
*/
package main
import "fmt"
func main() {
var name string
name = "Programming Squirrel"
fmt.Println("Hello, ", name, " Welcome to GO")
}
view raw HelloWorld.go hosted with ❤ by GitHub

The GO Codes you can find in this GitHub repository.

Happy Learning!!

Leave a comment