// Cloned by Stratford College 8 on 15 Nov 2019 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(200, 200);
}
function draw() {
// try to change the numbers below to see differences
background ( 220, 0, 200 );
rect(50, 100, 100, 100);
}