# P5.js Coding Challenge

Youtube - The Coding Train - Coding Challenge (opens new window)

# 模板代码

const WIDTH = Math.min(window.innerWidth, window.innerHeight, 480);

function setup() {
  createCanvas(WIDTH, WIDTH);
}

function draw() {
    background(230, 230, 250);
}