Add day 3

This commit is contained in:
rmgr 2022-12-19 21:06:49 +10:30
parent 328100ed52
commit 318537339c
1 changed files with 18 additions and 0 deletions

18
tcc3.p8 Normal file
View File

@ -0,0 +1,18 @@
pico-8 cartridge // http://www.pico-8.com
version 39
__lua__
function _draw()
t=time()
for x=0,128 do
for y=0,128 do
pset(x,y,(x&t)+(y&t) ~t)
end
end
end
__gfx__
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000