if I have 2 variables to set equal to each other how would I go about that? for example, if I had 2 numbers (3 , 8) so xval = 3 and yval = 8 how would I swap them with the following procedure?
xval = yval;
yval = xval;
this would just set both values to y which would output (8 , 8). I remember earlier in my lass there was a function to store a value for later use but I forgot what it was