Code viewer for World: Tutorial 1.2 (clone by Str...

// Cloned by Stratford College 2 on 15 Nov 2019 from World "Tutorial 1.2" by "Coding Train" project 
// Please leave this clone trail here.
 



function setup() {
  createCanvas(500, 500);
}

function draw() {
  background(100,0,200);
  background("blue");
  
  rect(0, 250, 500, 250, "red");
}