Code viewer for World: Tutorial 1.3 (clone by p b...

// Cloned by p birdwood on 10 Sep 2020 from World "Tutorial 1.3" by "Coding Train" project 
// Please leave this clone trail here.
 

/*
1. Code below is for https://youtu.be/D1ELEeIs0j8?list=PLRqwX-V7Uu6Zy51Q-x9tMWIv9cueOFTFA
2. Code is at 7:57 seconds on drawing rectangle
*/


function setup() {
  createCanvas(640, 360);
}

function draw() {
  // try to change the numbers below to see differences
  
  background ( 220, 0, 200 );
  
  rect(100, 00, 75, 150);
}