Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_9/even/even.go
2017-02-11 12:30:01 +08:00

7 lines
89 B
Go
Executable File

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