Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
View Tickets
New Ticket
Search
Context Navigation
Back to Ticket #1520
Ticket #1520
: test.au3
File test.au3,
147 bytes
(added by snarks@…,
15 years ago
)
Test case showing that an array which has its last element removed cannot have a new element added
Line
1
#include <Array.au3>
2
Dim $array[1]=["One Element"]
3
_ArrayDelete($array,0)
4
_ArrayAdd($array,"Replacement Element")
5
MsgBox(0,"Array",$array[0])
Download in other formats:
Original Format