initialized p5 project

This commit is contained in:
2025-02-03 12:05:46 +01:00
commit ca414fd909
6 changed files with 48 additions and 0 deletions

7
sketch.js Normal file
View File

@ -0,0 +1,7 @@
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}