Choose Category
package main import ( "fmt" ) func main() { num := 15 if num % 2 == 0 { fmt.Println("even") } else { fmt.Println("odd") } }