Testing OPTION BASE
===================

Test 1: OPTION BASE 1
B(1) = 100 (first element)
B(2) = 200 
B(5) = 500 (last element)

Test 2: Multi-dim array with BASE 1
C(1,1) = 11 
C(1,3) = 13 
C(3,1) = 31 
C(3,3) = 33 

Test 3: Array sizes
DIM D(10) with BASE 1
Elements: D(1) through D(10)
D(1) = 1 , D(10) = 10 

Test 4: Loop with BASE 1
Array E: 10  20  30  40  50 

OPTION BASE tests complete!

