function out = testFunction(x)
if (x > 5)
    disp('x is greater than 5');
elseif (x < 0)
    disp('x is less than 0');
end