Skip to content

Instantly share code, notes, and snippets.

View asutosh-147's full-sized avatar
🎯
Focusing

Asutosh Behuria asutosh-147

🎯
Focusing
View GitHub Profile
@asutosh-147
asutosh-147 / gobasics.md
Last active April 4, 2025 05:40
Golang basics

Go Language Concepts with Examples

1. Variables and Types

Go is a statically typed language, and variables must have a type. It supports primitive types like int, float64, string, and bool.

Example: Declaring Variables

package main
import "fmt"