webdev
09-10-2009, 02:42 AM
hi all, trying to write a function nonlat? which returns true if the given list does not contain any atoms. so an empty list would be a nonlat and return true. the tests i'm supposed to use are: (nonlat? '(a b c)) (nonlat? '(a (b) (c))) (nonlat? '((a b) ((c)) (d))) (nonlat? '()) and the...