almost the same but way more powerful on the 3D side, use to love Amos but found this in 2002 and have been using since.
think how many code lines in Amos you would need to make a spinning cube with a picture on the each face.
DarkBasic can do it 8 minus the rem statements.
rem make a pattern to grab as picture to go on face
box 0,0, screen width(),screen height(),rgb(rnd(255),rnd(255),rnd(255)),rgb(rnd(255),rnd(255),rnd(255)),rgb(rnd(255),rnd(255),rnd(255)),rgb(rnd(255),rnd(255),rnd(255))
get image 1,0,0,screen width(),screen height(),1
rem clear screen
cls 0
rem make cube and texture it
make object cube 1,1
texture object 1,1
rem make loop and spin cube.
do
rotate object 1,wrapvalue(object angle x (1)+1),wrapvalue(object angle y (1)+1),wrapvalue(object angle z (1)+1)
loop
Dark Physics makes any hot drink go cold.