Code viewer for World: Coding Train Intro World

// Cloned by Apples Twenty Five on 21 Sep 2021 from World "Tutorial 1.1" by "Coding Train" project 
// Please leave this clone trail here.
 


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

function draw() {
  //background(220);
  background(100,0,200);
}