Advertisement
linesguy

Every image ever

May 6th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. 0 rem This program plots every possible combination of black and white pixels... eventually.
  2. 0 rem It actually crashes once it finishes the first line, But that would take about 20 years to do, So i don't see much point in fixing it.
  3.  
  4. 10 gr : color = 15 : plot 0,0 : x = 0 : y = 0
  5. 20 if scrn(x,y) = 15 then gosub 1000
  6. 30 if scrn(x,y) = 0 then color = 15 : plot x,y
  7. 40 goto 20
  8.  
  9. 999 end
  10. 1000 if scrn(x+1,y) = 15 then color = 0 : plot x+1,y : x = x + 1 : goto 1000
  11. 1010 color = 0 : plot x,y : color = 15 : plot x+1,y : x = 0 : return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement