A list should be in the downloadable help.
hidden commands 1
hidden commands 2
And for good measure:
LOCK CLI - disables the command line interface on execution pause or termination
UNLOCK CLI - enables the command line interface
| (binary OR)
& (binary AND)
! (not the same as)
a=3
b=2
print a ! b
a=3
b=3
print a ! b
set static objects wireframe on
set static objects wireframe off
STATISTIC(1) - number of polygons being rendered
autocam off
for obj=1 to 25
make object sphere obj,25
position object obj, rnd(400)-200,rnd(400)-200,rnd(400)-200
next obj
position camera 0,0,-200
do
text 0,0,"Polygons :"+str$(statistic(1))
loop
Enjoy your day.