Changes between Initial Version and Version 3 of Ticket #3890


Ignore:
Timestamp:
06/02/22 11:13:11 (23 months ago)
Author:
mLipok
Comment:

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  
    22so using the following script
    33
    4 
    5 {{{
     4{{{#!autoit
    65Local $array1 = [1,2,3,4]
    76Local $array2 = [4,5,6]
     
    2524$array2_copy[2] = 7 ; modification so it will be different
    2625If Not ($array2 = $array2_copy) Then ConsoleWrite ('@@ Debug(' & @ScriptLineNumber & ") $array2 != $array2_copy ==== current release 3.3.16.0 ====" & @CRLF)
    27 
    2826}}}
    2927I get under current release 3.3.16.0
     
    3836modification of $array2_copy[2], so it will be different
    3937@@ Debug(24) $array2 != $array2_copy ==== current release 3.3.16.0 ====
    40 
    4138}}}
    4239
     
    5855modification of $array2_copy[2], so it will be different
    5956@@ Debug(24) $array2 != $array2_copy ==== current release 3.3.16.0 ====
    60 
    6157}}}
    62