mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-19 17:59:39 +08:00
11 lines
165 B
Go
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
|
|
}
|