end
Usage with "if" Statement:
var x = 10
# Using 'end' to mark the end of the 'if' block
if x > 5 then
show("x is greater than 5.")
endExplanation:
Usage with "for" Loop:
# Using 'end' to mark the end of the 'for' loop block
for var i = 1 to 5 then
show(i)
endExplanation:
Function Definition:
Explanation:
Nested Control Flow Statements:
Explanation:
Last updated