even.go 89 B

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