// Cloned by MrDheer on 4 Oct 2022 from World "Tutorial 1.2" by "Coding Train" project
// Please leave this clone trail here.
function setup() {
createCanvas(600, 600);
}
function draw() {
background(900,0,200);
rect(100, 200, 75, 150);
}