int main(int argc, char **argv) {
          // ON DIM DO: int  *p
          // ON DIM DO: int  *q
          // ON DIM DO: int  *r
          // ON DIM DO: int  *s
          int  *s = ARRAY(int  , s, 2, 0, 255, 0, 255)
          DIM 0x0002 0x0004
          int  *r = ARRAY(int  , r, 2, 0, 255, 0, 255)
          DIM 0x0002 0x0004
          int  *q = ARRAY(int  , q, 2, 0, 255, 0, 255)
          DIM 0x0002 0x0004
          int  *p = ARRAY(int  , p, 2, 0, 255, 0, 255)
          DIM 0x0002 0x0004
          int i;
          p[200] = 42;
          q[200] = 42;
          r[200] = 42;
          s[200] = 42;
          return(0);
}
