14 lines
250 B
JavaScript
Raw Permalink Normal View History

2023-01-18 16:08:26 +01:00
// Sketch 1.0: Key Events!
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
if(keyIsPressed) {
print("Hello World"); // see the console below ↓
}
}
// Reference: https://p5js.org/reference/