JoshA

Results 3 issues of JoshA

Context: https://go.dev/tour/flowcontrol/1 ``` package main import "fmt" func main() { sum := 0 fmt.Printf("Start value of sum: %v\n", sum) for i := 0; i < 10; i++ { fmt.Printf("Value of...

Wanted to provide an example where it's a bit more flexible rather than putting the whole ascii in a string

Showing how you can use `globals` to use one variable name to specify other variable name (this was my first time looking into globals). This is an example I personally...