Code viewer for World: P5 tutorial

// Cloned by Chandrabhanu Singh Rawat on 1 Oct 2022 from World "canvas 2d " by Starter user 
// Please leave this clone trail here.
 


// ==== Starter World =================================================================================================
// This code is designed for use on the Ancient Brain site.
// This code may be freely copied and edited by anyone on the Ancient Brain site.
// To include a working run of this program on another site, see the "Embed code" links provided on Ancient Brain.
// ====================================================================================================================

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

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