Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [shadowkatstudios@tsugumi lua]$ lua main.lua
- -- INPUT --
- def derp x
- var y 0
- loop
- echo x
- var y y+1
- until y == 5
- close
- exec derp 'hello, world.'
- -- OUTPUT --
- function derp(x)
- y=0
- repeat
- print(x)
- y=y+1
- until y == 5
- end
- derp('hello, world.')
- -- EXECUTED --
- hello, world.
- hello, world.
- hello, world.
- hello, world.
- hello, world.
- [shadowkatstudios@tsugumi lua]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement