/// Mascolo array ///

int[] d= {3,7,2,12,3,8};
int array = 6;

void setup() {
  size (600, 400);
}

void draw() {
  background ( 100, 0, 100 );
  float x=10, y=50;
  text(d[0], x, y );
  textSize( 30 );


for( ???; ???; ???; ) {
text(d[0], x, y );
y+=25;
}

*/
 text(d[0], x, y );
  text(d[1], x, y+25 );
   text(d[2], x, y+50 );
    text(d[3], x, y+75 );
     text(d[4], x, y+100 );
      text(d[5], x, y+125 );
       text(d[6], x, y+150 );
        text(d[7], x, y+175 );