Changes between Initial Version and Version 3 of Ticket #3890
- Timestamp:
- 06/02/22 11:13:11 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3890
- Property Owner set to Jpm
- Property Status changed from new to assigned
- Property Version changed from 3.3.14.0 to
-
Ticket #3890 – Description
initial v3 2 2 so using the following script 3 3 4 5 {{{ 4 {{{#!autoit 6 5 Local $array1 = [1,2,3,4] 7 6 Local $array2 = [4,5,6] … … 25 24 $array2_copy[2] = 7 ; modification so it will be different 26 25 If Not ($array2 = $array2_copy) Then ConsoleWrite ('@@ Debug(' & @ScriptLineNumber & ") $array2 != $array2_copy ==== current release 3.3.16.0 ====" & @CRLF) 27 28 26 }}} 29 27 I get under current release 3.3.16.0 … … 38 36 modification of $array2_copy[2], so it will be different 39 37 @@ Debug(24) $array2 != $array2_copy ==== current release 3.3.16.0 ==== 40 41 38 }}} 42 39 … … 58 55 modification of $array2_copy[2], so it will be different 59 56 @@ Debug(24) $array2 != $array2_copy ==== current release 3.3.16.0 ==== 60 61 57 }}} 62