Hi,
I have a macro that tests for the largest of two numbers:

Code:
Largest(x,y) ( ((x) > (y))? (x): (y) )
How would I code it to test for three?