variables + hello world - go tutorial for beginners - part 1

preview_player
Показать описание
This is a beginner tutorial on variables in go.

This is the first video of my golang tutorial video series. In this lesson, I am talking about the famous hello world example and explain the basic concepts of a go file as well as how variables get declared and initialized. Make sure to watch the tutorial other videos, as soon as they hit youtube. So definitely subscribe to the channel.

Playlist:

❤️ SUPPORT MY CHANNEL ❤️
--------------------------------------------------
A little support goes a long way!

📖 5 Books to skyrocket your career 📖
----------------------------------------------------

🎒 THE GEAR I USE 🎒
--------------------------------------------------

💻 Technical Gear

🎒 Digital Nomad Essential Gear

📷 YouTube Gear

👋 SOCIAL MEDIA 👋
----------------------------------------------------

@the_langhorst - INSTAGRAM
@the_langhorst - TWITTER
@the_langhorst - TIKTOK

🎶 MUSIC I USED 🎶
----------------------------------------------------

Karl Casey @ White Bat Audio

Song: Erlando - Questions (Vlog No Copyright Music)
Music provided by Vlog No Copyright Music.

‼️ Disclaimers

The links mentioned in this description may contain affiliate links. I may receive a commission for any purchases made through these links, but there won't be any extra cost for you. I am grateful for your support, as it enables me to keep providing you with valuable content for free.

#programming #coding #golang
Рекомендации по теме
Комментарии
Автор

I need to find some pleasure in writing programs, after working in C++. So I would try to relearn Go with these tutorials.

kamilziemian
Автор

Wow, Awesome video, you explained everything clearly, I have planned to learn Golang with your tutorials, Keep doing buddy :)

blitvideos
Автор

I wonder, would you make longer video about strings, runes and working in UTF-8 in Go? For some reason this is one of the hardest topic to me in whole Go and Unicode standard is quite long, so I still didn't learn enough about it to go to UTF-8 and topics like normalization in Go. I would greatly appreciate such material.

kamilziemian
Автор

package main

import "fmt"

func main() {
fmt.Println("Golang rocks!")
fmt.Println("Thank you!")
}

tedspens