#LISP ???
I have a list of reals assigned to s1. How can I find the minimum value in
that list s1 ? Example:
s1 = (1.2 3.4 5 6.7) Find the Minimum = 1.2 The MIN function
will not work on a list – am I missing a clever programming technique to
accomplish this ? If I am not missing a technique – what a "neat" feature
this would be in future LISP enhancements !
Dave Maki