home *** CD-ROM | disk | FTP | other *** search
- ' +----------------------------------------------------------------------+
- ' | |
- ' | PBClone Copyright (c) 1990-1992 Thomas G. Hanlin III |
- ' | |
- ' +----------------------------------------------------------------------+
-
- SUB ReverseL (Array() AS LONG, Elements%)
- FOR tmp% = 1 TO Elements% \ 2
- SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
- NEXT
- END SUB
-