diff --git a/w2_2_p5js/index.html b/w2_2_p5js/index.html new file mode 100644 index 0000000..ec981ee --- /dev/null +++ b/w2_2_p5js/index.html @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/w2_2_p5js/sketch.js b/w2_2_p5js/sketch.js new file mode 100644 index 0000000..4e7c82b --- /dev/null +++ b/w2_2_p5js/sketch.js @@ -0,0 +1,9 @@ +// Single-sketch example + +function setup() { + createCanvas(800, 600); +} + +function draw() { + background(120); +}