Getting Started
Install Go, write your first program, and learn the basics.
beginner
Go Introduction
What is Go, why it was created, and where it shines in modern software development.
beginner
Go Installation
Download and install Go on Windows, macOS, and Linux, and verify your setup.
beginner
Go Hello World
Write, compile, and run your first Go program.
beginner
Go Syntax
Learn the basic syntax rules of Go: packages, imports, semicolons, and tokens.
beginner
Go Comments
Use single-line and multi-line comments to document your Go code.
beginner
Go Variables
Declare and initialize variables with var, :=, and multiple assignments.
beginner
Go Constants
Declare constants with const and use iota for enumerated constants.
beginner
Go Output
Print output to the console with Print, Println, and Printf.
beginner
Go Data Types
Understand Go built-in types: integers, floats, booleans, strings, and more.
beginner
Go Type Conversion
Convert between types explicitly in Go.