OneBite.Dev - Coding blog in a bite size

use if conditional statement in Go

Code snippet on how to use if conditional statement in Go

package main
import "fmt"

func main() {
  // create a variable and assign it a value
  myNumber := 5

  if myNumber > 10 {
    fmt.Println("myNumber is greater than 10")
  }

}

This code demonstrates how to use an if conditional statement in Go. The code starts by declaring a variable called myNumber, and assigning it the value of 5. A conditional statement is then used to check if the myNumber is greater than 10. If it is, then a message is printed saying “myNumber is greater than 10”. If myNumber is not greater than 10, then nothing happens since no other code is in the if statement. If statements allow us to perform different operations based on conditions that have been met.

go