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 contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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") | |
| } |
The GO Codes you can find in this GitHub repository.
Happy Learning!!


Leave a comment