Go Installation And First Program - Learn Golang #1

Published: 16 March 2022
on channel: Codemy.com
21,659
268

In this video we're going to install Go Lang and write our first Go Program!

Installing Go is super easy. After we install it, we're going to write and run the world famous "Hello World" program.

Go is a cross-platform, open source programming language that was developed at Google.

#golang #codemy #JohnElder


Timecodes

0:00​​ - Introduction
0:50 - Download And Install Go
2:17 - Download Git Bash Terminal
2:35 - Create A Go Directory
3:00 - Check Go Version
3:15 - Create Hello.go File
3:45 - Package Main
4:03 - Import Fmt Package
4:46 - Review Fmt Documentation
5:45 - func main() {}
6:02 - Println("Hello World!!!")
6:55 - Run A Go File
7:32 - Conclusion