home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HyperLib 1997 Winter - Disc 1
/
HYPERLIB-1997-Winter-CD1.ISO.7z
/
HYPERLIB-1997-Winter-CD1.ISO
/
オンラインウェア
/
PRG
/
bwbasic-2.10.sit
/
bwbasic-2.10
/
bwbtest
/
option.bas
< prev
next >
Wrap
BASIC Source File
|
1993-11-09
|
188b
|
9 lines
1 PRINT "OPTION.BAS -- Test OPTION BASE Statement"
5 OPTION BASE 1
10 DIM n(5)
20 FOR i = 1 to 5
30 LET n(i) = i + 2
40 PRINT "The value at position ";i;" is ";n(i)
50 NEXT i
60 END