%we can call the return variable whatever we want, but convention is to
%call it a.
function bluh = divisible(number, factor)
    bluh = mod(number, factor) == 0;
end