8" :class="scrolled && 'is-scrolled'">
NOA
Labs
Tutorials
Courses
Skill Forge
Explore
Labs
Hands-on live sessions
Mentors
Meet the senior engineers
Projects
Real portfolio-ready builds
Talent Directory
Public student profiles
Mock Interview
Practice with real feedback
ATS Resume Checker
Free instant resume scoring
Search docs
Ctrl K
Login
Join Free
Artificial Intelligence
LangChain
LLMs
Machine Learning
Prompt Engineering
RAG (Retrieval-Augmented Generation)
AJAX
GraphQL
Apache Kafka
Microservices
Node.js
RabbitMQ
REST API
WebSockets
Algorithms
Data Structures
Angular
Bootstrap
CSS
HTML
jQuery
Next.js
Nuxt.js
React
Svelte
Tailwind CSS
Vue.js
ASP.NET Core
Django
.NET
Entity Framework Core
FastAPI
Flask
Gin
gRPC
Hibernate
Laravel
NestJS
Spring
Spring Boot
Spring Cloud
Spring Data JPA
Spring MVC
Spring Security
AWS
Azure
CI/CD
Docker
Git
Kubernetes
Linux
Nginx
Terraform
C
C++
C#
Dart
Go
Java
JavaScript
Kotlin
PHP
Python
Ruby
Rust
Swift
TypeScript
Database Design
MongoDB
MySQL
Oracle Database
PostgreSQL
Redis
SQL
System Design
↑↓ navigate
↵ open
esc close
Tutorials
/
Go
Go menu
Go Tutorial
Learn Go — a simple, fast, statically-typed language built for concurrency and modern backends.
Start the Go tutorial →
What you'll learn
1. Go Introduction
What Go is, why Google built it, and why it has become the default language for cloud infrastructure.
2. Install Go
Install the Go toolchain, verify it, and run your first program with go run.
3. Go Syntax & Variables
Packages, the main function, variables, zero values, and Go's built-in types.
4. Functions & Multiple Returns
Declaring functions, multiple return values, named returns, and variadic parameters.
5. Structs & Interfaces
Structs, methods, pointer receivers, and how Go's implicit interfaces enable composition over inheritance.
6. Goroutines & Channels
Concurrency with goroutines, channels, select, and the sync package.
7. Error Handling
Go's explicit error values, wrapping errors, and panic/recover — and when (not) to use them.
8. Building a REST API with net/http
A practical JSON REST API using only the standard library, plus a look at where Gin fits in.
9. Advanced Concurrency Patterns
The worker pool pattern in full, context.Context for cancellation and timeouts, and collecting errors from concurrent work with errgroup.
10. Testing & Benchmarking
Idiomatic table-driven tests, writing benchmarks with go test -bench, and measuring test coverage with go test -cover.
11. Go Interview Questions
Commonly asked Go interview questions with clear, practical answers.