Advertisement
Guest User

test

a guest
Oct 31st, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. local monitor = peripheral.wrap("top")
  2. local y = 1
  3. monitor.clear()
  4. monitor.setCursorPos(1,1)
  5. for line in io.lines("changelog") do
  6.   monitor.write(line)
  7.   y = y + 1
  8.   monitor.setCursorPos(1,y)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement