Constanza Johnson: Tarea "for"

De Casiopea
Tarea 2


TítuloTarea 2
Tipo de ProyectoProyecto de Curso
Período2011-
Del CursoImagen Escrita,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Constanza Johnson
ProfesorHerbert Spencer

void setup () {
  size (500, 500);
  background (255);
  smooth();
  noLoop();
}

void draw () {
  for( int i = 300; i <width; i += 30) {
  
  line( i, 400, 90,90 );
    stroke (70, 15, 70);
  }
}