Go – if statement

  • Post author:
  • Post category:GO
  • Post comments:2 Comments

An if statement consists of a boolean expression followed by one or more statements. Syntax The syntax of an if statement in Go programming language is − if(boolean_expression) { /* statement(s) will execute if…

Continue ReadingGo – if statement

Go – Operators

  • Post author:
  • Post category:GO
  • Post comments:1 Comment

This topic is about Go - Operators. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. Go language is rich in built-in operators…

Continue ReadingGo – Operators