Given bean:
function bean = hop(num) bean = 5*(num+2)
and the script skip.m:
bean = 10; result = hop(bean) disp(['bean = ' num2str(bean)]);
What is displayed when skip is run in the MATLAB command window (i.e. >> skip)?