Guest User

Program

a guest
Aug 11th, 2013
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. local i = 1
  2. while true do
  3.     term.clear()
  4.     term.setCursorPos(1,1)
  5.     term.write(i.." press any key to increment")
  6.     os.pullEvent("key")
  7.     i = i+1
  8. end
Advertisement
Add Comment
Please, Sign In to add comment