5 lines
86 B
Racket
5 lines
86 B
Racket
(define (my-even? x)
|
|
(= (modulo x 2) 0))
|
|
|
|
(define (my-odd? x)
|
|
(= (modulo x 2) 1))
|