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

7 lines
96 B
Go
Executable File

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