end keyword
Used at end of loops or conditionals. for, while, if, select must be terminated by end.
for
while
if
select
end
a=42 if a==42 then disp("the answer to all questions") end i = 0 while i<5 disp("i"); i = i + 1; end n=5; for i = 1:n for j = 1:n a(i,j) = 1/(i+j-1); end end
,
;
if %t, a=1; end b=2
function
endfunction
end=1