In Go, the syntax for an if statement is as follows:
main.go69 chars4 lines
The condition
can be any expression that evaluates to a boolean value (true
or false
). If the condition is true
, then the code block inside the curly braces {}
is executed. If the condition is false
, then the code block is skipped.
Optionally, you can include an else
block after the code block inside the curly braces {}
to specify what to do if the condition is false
. For example:
main.go131 chars6 lines
You can also chain multiple if
statements together using else if
. For example:
main.go203 chars8 lines
Here is an example of an if
statement in Go:
main.go167 chars13 lines
gistlibby LogSnag