628 B
628 B
Basics 101
Sketch: 0. Hello World
'''javascript // Hello world! // This is comment
function setup() { createCanvas(400, 400); }
function draw() { background(220); print("Hello World"); // see the console below ↓ } '''