Files
the-way-to-go_ZH_CN/eBook/examples/chapter_13/even/even/even.go
2015-03-03 12:25:25 -05:00

11 lines
165 B
Go

// even.go
package even
func Even(i int) bool { // Exported function
return i%2 == 0
}
func Odd(i int) bool { // Exported function
return i%2 != 0
}