Learning Go Day 1: Notes
The CTO of my new company recommended the Udemy course “Go: The Complete Developer’s Guide (Golang)”. I started today and here are some notes I made. Hello World in Go We start by writing a Hello World and studying all the elements. package main import "fmt" func main() { fmt.Println("Hello World!") } How do we run code? go run main.go runs the program go build main.go compiles it to an executable ...