Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. # Fancy source code for the output below:
  2.  
  3. i = 0
  4. loop: { # endless loop, same as: while: { true } do: { ... }
  5. "-------> " ++ i println
  6. 2 times: {
  7. "yo" println
  8. }
  9. i = i + 1
  10. }
Add Comment
Please, Sign In to add comment