Files
linguist/test/fixtures/matlab_function.m
2011-07-05 22:14:37 +08:00

10 lines
190 B
Matlab

function ret = matlab_function(A,B)
% Simple function adding two values and displaying the return value
ret = A+B;
% Display the return value
disp('Return value in function');
disp(ret);