HELP
SAVE GAME.P8
LOAD GAME.P8
RUN
SPLORE
            A=nil
X=23
S="TEXT"
T={ name="Moritz",
    loc="Dortmund"}
            + - * / ^ %
< > <= >= ~= ==
#list  "A".."B"
and or not
            FUNCTION ADD(a,b)
 RETURN A+B
END
            IF (X  < 33) THEN
 PRINT("HALLO")
else
 print("hey")
END
            --RAUF
FOR I = 1,10 DO
 PRINT(I)
END
--RUNTER
FOR A=10,0,-2 DO
 PRINT(A)
END
--ARRAY
FOR S IN ALL(SHIPS) DO
 PRINT(S.NAME)
END
--TABELLE
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]) --1-basiert!! 
            _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])
            
                
                    Player 1:
                    
  ⬅︎⬆︎⬇︎➡︎ C,V bzw. N,M
                    
 Player 2:
                    
  ASDF, LSHIFT, A
                    
                
btn([i, [p]])
btnp([i, [p]]) 
            sfx(n, [chan, offset])
music([n, [fade, mask]])
            0 none
1 slide
2 vibrato
3 drop (drum)
4 fade in
5 fade out
6 fast arpeggio
7 slow arpeggio
            abs(x),atan2(dx, dy),
cos(x),sin(x),
flr(x),max(x,y),min(x,y),
rnd(x),sgn(x),sqrt(x)