home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD 60
/
supercd60_2.iso
/
BlitzBasic
/
Blitz2DPCP
/
data1.cab
/
Support
/
help
/
beginners
/
tutorial
/
array.bb
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-11-21
|
321 b
|
16 lines
Dim day$(6) ; Dim the array... 7 elements (0 to 6)
day$(0)="Monday" ; Set the array data
day$(1)="Tuesday" ;
day$(2)="Wednesday" ;
day$(3)="Thursday" ;
day$(4)="Friday" ;
day$(5)="Saturday" ;
day$(6)="Sunday" ;
For loop=0 To 6 Step 2
Print day$(loop) ; Loop through and print the data
Next