Pointers in GoIntroduction to Pointers As we have learned, a variable is a named location in memory that stores a value. When we assign a value to a variable, we are storing that value in a specific location in memory. We can manipulate the value of a variable by ...Aug 23, 2025·6 min read
Go lang conditionals, functionsConditionals: if height > 6 { fmt.Println("You are super tall!") } else if height > 4 { fmt.Println("You are tall enough!") } else { fmt.Println("You are not tall enough!") } The Initial Statement of an If Block : An if conditional can h...Aug 4, 2025·13 min read
Golang introThe Compilation Process Computers need machine code, they don't understand English or even Go. We need to convert our high-level (Go) code into machine language, which is really just a set of instructions that some specific hardware can understand. I...Aug 2, 2025·5 min read