Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. local x = 1
  2. while `x' <= 10 {
  3. display "`x'"
  4. if (`x' == 5) {
  5. display "BREAK LOOP RAN!"
  6. break
  7. }
  8. local x = `x' + 1
  9.  
  10. }
  11. display "LEFT MAIN LOOP"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement