HELP
SAVE GAME.P8
LOAD GAME.P8
RUN
SPLORE
            A=nil
X=23
local S="TEXT"
T={name="Joe", age="32"}
            + - * / ^ %
< > <= >= ~= ==
#list  "A".."B"
and or not
            FUNCTION ADD(a,b)
 RETURN A+B
END
            IF (X  < 33) THEN
 PRINT("HALLO")
else
 print("hey")
END
            --Incrementer
FOR I = 1,10 DO
 PRINT(I)
END
--Decrementer
FOR A=10,0,-2 DO
 PRINT(A)
END
--Collection
FOR S IN ALL(SHIPS) DO
 PRINT(S.NAME)
END
--Table
FOR K,V IN PAIRS(M) DO
 PRINT("K:"..K..",V:"..V)
END
            t={a="x",b=1}
add(t, v)
del(t, v)
t={1,2,3,4}
print(t[1]) --Commence A 1!
            _init() _update() _draw()
            spr(n, x, y, [w, h],
  [flip_x], [flip_y])
sspr(sx, sy, sw, sh,
  dx, dy, [dw, dh],
  [flip_x], [flip_y])
             
                
            pset(x, y, [c])
pget(x,y)
            rect(x0,y0,x1,y1, [col])
rectfill(x0,y0,x1,y1,[c])
circ(x, y, r, [c])
circfill(x, y, r, [c])
line(x0, y0, x1, y1, [c])
            cls()
camera([x, y])
clip([x, y, w, h])
                
            mget(x, y)
mset(x, y, v)
map(map_x, map_y,
  screen_x, screen_y,
  width, height, [layer])
            
                
                    Joueur 1:
                    
  ⬅︎⬆︎⬇︎➡︎ Y,X/C,V/N,M
                    
 Joueur 2:
                    
  ASDF, LSHIFT, A
                    
                
btn([i, [p]])
btnp([i, [p]]) 
            sfx(n, [chan, offset])
music([n, [fade, mask]])
            0 aucun
1 glissando
2 vibrato
3 percussion
4 fondu ouverture
5 fondu fermeture
6 arpeggio rapide
7 arpeggio lent
            abs(x),atan2(dx, dy),
cos(x),sin(x),
flr(x),max(x,y),min(x,y),
rnd(x),sgn(x),sqrt(x)