even.go 153 B

12345678910
  1. // even.go
  2. package even
  3. func Even(i int) bool { // Exported function
  4. return i%2 == 0
  5. }
  6. func Odd(i int) bool { // Exported function
  7. return i%2 != 0
  8. }