Hello, World

Get familiar with the basics of Go with some practical examples.

Hello, World!

As a warmup, let’s start with a basic application: “Hello, World!” The code sample for this application is below.

Press + to interact
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}

If we run the code above, we should see the ...