xxxxxxxxxx
12
/*
Simplified test based on the examples in this guide:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
*/
import {mySquare} from "./square.js";
function setup() {
createCanvas(400, 400);
background(200);
mySquare(100, 100, 100);
}