Terminates the smallest enclosing For, Loop, Repeat, or While statement in which it appears.
Exitloop
i=0
Loop
! Program statements
if i > 5 then
exitloop
endif
print i,
i=i+1
Endloop
! this will print 0 1 2 3 4 5
For, Loop, Repeat, While