From: ·······@dan.microserve.com
Subject: stuck......
Date: 
Message-ID: <general.4.00A84ABA@dan.microserve.com>
I am in a slight need of help...I need a LISP program that recursively finds 
the max number of a list...ex (MAXNUM '(1 2 3 15 1)
			should return 15
when I compare an atom to the rest of the list I get NIL not a float
		(cond	((....... 
			(((>(car a)(maxnum (cdr a))) 'a)
			........)
HELP