Jun 28, 2024
Go version command.go mod init.go.mod file.package main.func main() {}.import keyword.fmt.Println() for printing to the terminal.var keyword.
var intNum int.const.
const pi = 3.14.func keyword.
func intDivision(numerator int, denominator int) int.append function to add elements.map[string]uint8{}range.for, range, etc.
go function() and sync.WaitGroup.* for pointers and & for memory addresses.var p *int and p = &i.sync.WaitGroup.
wg.Add(), wg.Done(), wg.Wait().make(chan int), use <- for sending and receiving.[]T for generic types.func sumSlices[T int | float32 | float64](values []T) T.authorization function and error handlers./account/coins endpoint.