Advertisement
Guest User

oyus2

a guest
Mar 7th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. [shadowkatstudios@tsugumi lua]$ lua main.lua
  2. -- INPUT --
  3. def derp x
  4. var y 0
  5. loop
  6. echo x
  7. var y y+1
  8. until y == 5
  9. close
  10. exec derp 'hello, world.'
  11. -- OUTPUT --
  12. function derp(x)
  13. y=0
  14. repeat
  15. print(x)
  16. y=y+1
  17. until y == 5
  18. end
  19. derp('hello, world.')
  20.  
  21. -- EXECUTED --
  22. hello, world.
  23. hello, world.
  24. hello, world.
  25. hello, world.
  26. hello, world.
  27. [shadowkatstudios@tsugumi lua]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement