Skip to content

Instantly share code, notes, and snippets.

@jochasinga
Created September 30, 2014 02:06
Show Gist options
  • Save jochasinga/5acfbf348954d8433e1d to your computer and use it in GitHub Desktop.
Save jochasinga/5acfbf348954d8433e1d to your computer and use it in GitHub Desktop.
If condition in Go
package main
import "fmt"
func main() {
i := 1
for i <= 10 {
if i % 2 == 0 {
fmt.Println(i, "even")
} else {
fmt.Println(i, "odd")
}
i++
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment