add pico
This commit is contained in:
parent
7a4d9072df
commit
dc39569dec
|
@ -0,0 +1,34 @@
|
|||
pico-8 cartridge // http://www.pico-8.com
|
||||
version 42
|
||||
__lua__
|
||||
|
||||
|
||||
|
||||
function _init()
|
||||
cls()
|
||||
print("pour vous inscrire aux epreuves", 8)
|
||||
print("galactiques, tapez votre nom:", 8)
|
||||
end
|
||||
|
||||
function _draw()
|
||||
i = 0
|
||||
while i < 26 do
|
||||
s = chr(97 + i)
|
||||
x = i*6
|
||||
y = 14
|
||||
if i > 13 then
|
||||
x = x - (13 * 6)
|
||||
y = 22
|
||||
end
|
||||
print(s,x,y,9)
|
||||
i = i + 1
|
||||
end
|
||||
end
|
||||
|
||||
__gfx__
|
||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||
00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
|
Loading…
Reference in New Issue