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."
int arr[][] arr = create int[3][] arr[1] = create int[5] arr[2] = create int[20] arr[3] = create int[10]