To play it safe, the loop indices can be limited like this:
    
    
    for h in 0..a.high:
        for w in 0..a[h].high:
    
    
    Run

This works no matter what size the arrays are.

Reply via email to