2023-01-09 10:54:32 +01:00

628 B

Basics 101

autopilot creativity

Sketch: 0. Hello World

// Hello world! 
// This is comment

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

function draw() {
  background(220);
  print("Hello World");          // see the console below ↓
}