so i finally took a swing at writing my first program (which you can find below) but when i try to EXE it pops up with a window saying "failed to write program as EXE or Debug" how would I go about doing this?
and what does EXE stand for anyway?
thanks in advance.
Rem Project: cube
Rem Created: 1/13/2009 2:39:16 PM
Rem
Rem ***** Main Source File *****
Rem
set display mode 1024, 768, 32
autocam off
sync on
sync rate 60
make object cube 1, 25
color object 1, rgb(128, 64, 78)
position camera 30, 30, 30
point camera 0, 0, 0
make light 1
position light 1, 0, 30, 0
do
if downkey()=1 then pitch object down 1,1
if upkey()=1 then pitch object up 1,1
if leftkey()=1 then turn object left 1,1
if rightkey()=1 then turn object right 1,1
sync
loop
...