mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:08:53 +08:00
7 lines
96 B
Go
Executable File
7 lines
96 B
Go
Executable File
// even.go
|
|
package even
|
|
|
|
func Even(i int) bool { // exported function
|
|
return i%2 == 0
|
|
}
|