Files
the-way-to-go_ZH_CN/eBook/examples/chapter_13/even/even/even.go

11 lines
153 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
}