Slight adjustment needed to make it work by moving the cls to the top of the loop.
randomize timer()
sync on
do
cls
s=s+1
time=timer()
a=rnd(3)
c=rnd(3)
d=rnd(3)
e=rnd(3)
for b=1 to 10000
d=d+c*d-e^a
e=e+c*d-a^b
c=c+e*c-d^b
a=a+c*b-d^e
next b
print a
print c
print d
print e
timetotal=timetotal+(timer()-time)
print "Average speed in ms: ";timetotal/s
sync
loop
hmmm, makes me wonder how you have set up your PC because I get 42 in various display modes and I have a lowly AMD 650
(rest of my PC specs are in my profile).
edit: Ah wait a moment, this is for DB classic isn`t it, I tested this in DBPro, that's probably why I'm a tad quicker.
Programming anything is an art, and you can't rush art.
Unless your name is Bob Ross, then you can do it in thirty minutes.