Advertisement
hevohevo

CC: exercise8_3

May 19th, 2016
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. -- exercise8_3
  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.setBackgroundColor(colors.blue)
  9. for tate=1,20 do
  10.   mon.setCursorPos(1,tate)
  11.   for yoko=1,30 do
  12.     mon.write(" ")
  13.   end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement