function result = yetAnotherFunction(a,b)
%yetAnotherFunction does something with a and b
%Examples:
%  ... (omitted to make you think harder)
%D. Duck for CISC106 sect 99, 11/10/2006
  if (a < b)
    result = [ a b ];
  else
    result = [ b a ];
  end
  return;
end
