gistlib
main.mfunction result = func1(x) result = x + 1; end function result = func2(y) result = 2 * y; end function result = func3(z) result = z + 10; end result = func3(func2(func1(-1))); disp(result); 205 chars15 lines
function result = func1(x) result = x + 1; end function result = func2(y) result = 2 * y; end function result = func3(z) result = z + 10; end result = func3(func2(func1(-1))); disp(result);
gistlibby LogSnag