Advertisement
hevohevo

CC: exercise8_2

May 19th, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. -- exercise8_2
  2. local mon = peripheral.wrap("top")
  3. mon.setTextColor(colors.white)
  4. mon.setBackgroundColor(colors.black)
  5. mon.clear()
  6. mon.setTextScale(0.5)
  7.  
  8. mon.setCursorPos(2,2)
  9. mon.setBackgroundColor(colors.red)
  10. for i=1,30 do
  11.   mon.write(" ")
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement