xxxxxxxxxx
26
// SCOPE!
let x = 10;
//console.log(x * 20); // + - * /
console.log( x >= 100 ); // >, <, >=, <=, ===
if ( x > 5 ) {
then I order pizza
}
function setup() {
createCanvas(400, 400);
} // end function setup()
function draw() {
background(255, 255, 220); // making the background yellow
ellipse(100, 100, 20, 20);
}