Last active
April 30, 2021 15:10
-
-
Save fdonzello/298d08a816669b4585d55ec130782b4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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