Input Box
(define isLat2 (lambda (l) (cond ((isNull l) #t) ((isAtom (car l)) (isLat2 (cdr l))) ((gt 2 1) #f) ))) (define l2 '(else not working but (gt 2 1) or #t does)) (isLat2 l2)
Output Box
It comes out here.