This function is supposed to return #t
if the list e
is incrementally ordered.
The function doesn t work and I can t fix it.
(define (ordered e)
(if (or (null? e) (> length(e) 1))
#t
(if (> (car e) (cadr e))
#f
(ordered (cdr e)))))