Write a two-input, two-output function that swaps its two input arguments. For example:
[q,r] = swap(5,10)
returns q = 10 and r = 5.
1 player likes this problem