This keyword is used to stop the execution of a program and return control to the web-interface. Anything after this statement is skipped.
disp('This is the only line displayed.');
return
disp('This line is skipped.');
disp('This line is also skipped.');