Jagged Array Support

For PowerBuilder .NET targets, the PowerScript array syntax allows you to declare jagged arrays, which have elements of differing dimensions and sizes, and are sometimes called "arrays of arrays."

This example creates an array with three elements, each of type int[ ], and initializes the three elements of the first array dimension with references to individual array instances of varying lengths in the second array dimension:
        int arr[][]
        arr = create int[3][]
        arr[1] = create int[5]
        arr[2] = create int[20]
        arr[3] = create int[10]