View difference between Paste ID: mCvsBkdN and eUH0DTbT
SHOW: | | - or go back to the newest paste.
1-
yCount = 1
1+
local w, h = term.getSize()
2
while true do
3-
for i = 1,51 do
3+
  for yCount = 1, h do
4-
  paintutils.drawPixel(i,yCount,math.random(1,32768))
4+
    for i = 1, w do
5-
end
5+
      paintutils.drawPixel(i,yCount,2^math.random(0,15))
6-
yCount = yCount + 1
6+
    end
7-
for i = 1,51 do
7+
    sleep(0)
8-
  paintutils.drawPixel(i,yCount,math.random(1,32768))
8+
  end
9-
end
9+