function [x_plus_y,x_minus_y] = my_function(x,y)

%Function body
x_plus_y = x + y;
x_minus_y = x - y;