Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 500 Bytes

keyword_end.md

File metadata and controls

22 lines (16 loc) · 500 Bytes

Home Keywords

Keyword end

Descrption

Define the end of a code block for if statements, else statements, while statments, and try-block statements.

Example

int left = 9;
int right = 18;

if left > right;
    println "Left is greater than right.";
else; if left == right;
    println "Left is equal to right.";
else;
    println "Right is greater than left.";
end;