There has been some discussion at the LB Yahoo! group on the effect of variable name length on execution time. Just for interest, these are the results I got from LB 4.5.1 and LBB 3.09 when running the program listed below:
LB 4.5.1:
Long variable name: 798
Short variable name: 793
LBB 3.09:
Long variable name: 115
Short variable name: 98
So the effect of variable name length is more significant in LBB, but even with the long name it runs 7 times faster.
Richard.
Code: t1 = time$("ms")
for i = 1 to 1000000
next
t2 = time$("ms")
for i = 1 to 1000000
aVeryLongNumericVariableName = i
next
t3 = time$("ms")
for i = 1 to 1000000
a = i
next
t4 = time$("ms")
print "Long variable name: "; (t3 - t2) - (t2 - t1)
print "Short variable name: "; (t4 - t3) - (t2 - t1)