1 pico-8 cartridge // http://www.pico-8.com
2 version 18
3 __lua__
4
5 function fps()
6 f = stat(7)
7 print("fps: "..f, 0, 120, 1)
8 end
9
10 cls()
11 while 1 do
12 for x=0,95 do
13 for y=0,95 do
14 r = rnd(9)
15 if (r > 8) then
16 pset(x,y,1+rnd(9))
17 fps()
18 end
19 end
20 end
21 flip()
22 end
23
24 __gfx__
25 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
26 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
27 00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
28 00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
29 00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
30 00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000