home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 13
/
CD_ASCQ_13_0494.iso
/
maj
/
419
/
revi.bas
< prev
next >
Wrap
BASIC Source File
|
1994-03-13
|
545b
|
12 lines
' +----------------------------------------------------------------------+
' | |
' | PBClone Copyright (c) 1990-1994 Thomas G. Hanlin III |
' | |
' +----------------------------------------------------------------------+
SUB ReverseI (Array() AS INTEGER, Elements%)
FOR tmp% = 1 TO Elements% \ 2
SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
NEXT
END SUB