Skip to content

Instantly share code, notes, and snippets.

@fdonzello
Last active April 30, 2021 15:10
Show Gist options
  • Save fdonzello/298d08a816669b4585d55ec130782b4e to your computer and use it in GitHub Desktop.
Save fdonzello/298d08a816669b4585d55ec130782b4e to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
i := 0
i++
if i > 0 {
fmt.Println("i greater than 0")
} else {
fmt.Println("i <= 0")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment