save current progress
This commit is contained in:
parent
806265f4c3
commit
b08c78257b
4 changed files with 92 additions and 0 deletions
8
public/scripts/hello-world.js
Normal file
8
public/scripts/hello-world.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
function setup() {
|
||||
let mycanvas = createCanvas(400, 400);
|
||||
mycanvas.parent('hello-world');
|
||||
}
|
||||
function draw() {
|
||||
fill(255);
|
||||
ellipse(mouseX, mouseY, 80, 80);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue