Introduction to Go (Golang Setup & First Program). - Go Tutorial for Beginners #1
30views
004:05
T
Taught by Celeste AI - AI Coding Coach
View on YouTubeDescription
Learn Go programming in this beginner-friendly tutorial! ๐
In this lesson, you will learn:
โ
What is Go and why learn it
โ
Go installation and setup
โ
Writing your first Go program
โ
Understanding package main and func main
โ
go run vs go build commands
โ
Basic arithmetic in Go
๐ Timestamps:
0:00 - Introduction
0:24 - Why Learn Go
0:52 - First Program Demo
1:28 - go build Demo
1:54 - Calculator Demo
2:38 - Recap
3:10 - End
๐ป Source Code: https://github.com/GoCelesteAI/go_intro
๐ Code from this lesson:
// hello.go
package main
import "fmt"
func main() {
fmt.Println("Welcome to Go Programming!")
fmt.Println("Let us build something great!")
}
// calculator.go
package main
import "fmt"
func main() {
fmt.Println("Addition:", 10 + 5)
fmt.Println("Division:", 10 / 3)
fmt.Println("Float division:", 10.0 / 3.0)
}
๐ Next: Lesson 2 - Variables & Data Types
#Go #Golang #GoTutorial #LearnGo #Programming #GoLang #GoProgramming
Back to tutorials๐ Read the articleOpen in YouTube
Duration
4:05
Published
January 25, 2026
Added to Codegiz
March 15, 2026