Question
Return Variable
Hello everyone,
Lets say I have:
x=2 and y=5
I want to create a new variable that is going to be equal to the variable with the highest value, per say...
z=max(x,y)
and in return get 'y' not 5
but if I change the 'x' and 'y' values I want it to return whichever variable has the highest value.
PS Im new at this, maybe I am missing a simple rule of programming, not sure...

