xxxxxxxxxx
12
//This sets up our environment
// The two slashes are comments (//)
// comments are ignored by the programming language
function setup() {
createCanvas(640, 480);
}
//This loops over and over again
function draw() {
//background(255); //draw white
background(0); //draw black
}