If and else in Go Language

In this section, we’ll explore how to use if and else statements in Go. Imagine an if statement as a way to say:“If this condition is true, then do this.” It’s like a simple decision-making tool in code. Let’s look at an example written in Go: /* In this case, ‘elementos’ will be 0 because […]

read more
The switch Statement in Go

When we use switch in Go, we’re evaluating a condition and defining different outcomes for each case. It’s like writing multiple if-else statements using the same variable as the condition. Let’s try a simple example: day := “monday” switch day { case “monday”: fmt.Println(“es lunes”) case “tuesday”: fmt.Println(“es martes”) case “wednesday”: fmt.Println(“es miercoles”) case “thursday”: […]

read more
GO: Call a function from a string value using reflect

Trying to create a small program in Go, I came across this challenge: How can I call one function or another depending on an obtained value?

read more