home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 January
/
PCWELT_1_2006.ISO
/
pcwsoft
/
autoit-v3-setup.exe
/
Examples
/
_ArraySwap.au3
< prev
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
|
2004-12-19
|
241 b
|
12 lines
#include <Array.au3>
Dim $asArray[2]
$asArray[0] = "World!"
$asArray[1] = "Hello"
_ArrayDisplay( $asArray, "_ArraySwap() - BEFORE" )
_ArraySwap( $asArray[0], $asArray[1] )
_ArrayDisplay( $asArray, "_ArraySwap() - AFTER" )
Exit