ArrayObj.Clone not working.

Issue #57 closed
Winter Laite created an issue

Code:

veg := ["Asparagus", "Broccoli", "Cucumber"]
cloney := veg.Clone()

val := cloney.Get(2)

MsgBox(val, "cloney")
MsgBox(veg[2], "veg")

Keysharp does not display “Broccoli” in 'MsgBox(val, “cloney”), but does in 'MsgBox(veg[2], “veg”)

AHK displays “Broccoli” in both MsgBoxes.

Comments (3)

  1. Log in to comment