MPL Documentation

ELSE

end is used to introduce the code or the block of code if the condition is false. 
   if (condition) then ''true_statement''
   else ''false_statement'';
   if boolean_condition then begin
      statement_one;
      statement_two;
   end
   else begin
      statement_three;
      statement_four;
   end;
Source: Reserved Words
See Also:
begin, if, end.