octave/f1.m
function [x, y] = f1(a, b) if a >= b x = a y = b else x = b y = a endif endfunction