Go Quick Start

A minimal guide to quickly start developing with the Go programming language.

📦 Installation

Install Go on Linux using the package manager:

sudo apt update
sudo apt install golang -y

go version

⚙️ Verify Installation

go version

👋 Hello World

Create a file called main.go:

package main

import "fmt"

func main() {
    fmt.Println("Hello, Go!")
}

🚀 Run the Program

go run main.go