Bootcamp 01
It's time to start coding!
◻️
We will introduce you to coding using The Go Programming Language. Go is modern and minimal; it is an excellent language to introduce you to coding.
We will start with the official version of Go's "Hello World!" program:
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
Hello, 世界
You will become familiar with Go's various types and constructs. You will get a good feel for a statically typed imperative coding language.
The section culminates in building a command-line app that uses a stack; you will make a reverse-polish-notation calculator.