Jump to content

Recommended Posts

Posted

Yes, you can also store arrays within arrays!

#include<Array.au3>

Local $aFirstArray[5] = [1, 2, 3, 4, 5]
Local $aSecondArray[5] = [1, 2, 3, 4, 5]

$aFirstArray[3] = $aSecondArray

_ArrayDisplay ($aFirstArray[3], "First Array: Element 3")

However, it does warn you in the helpfile against doing this.

Mat

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...