From fd0696b5159f870e1a1c3db49a46a756a17df825 Mon Sep 17 00:00:00 2001 From: Dave Pagurek Date: Sat, 6 Apr 2024 09:04:10 -0400 Subject: [PATCH] Move newline around in code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5da830ba92..5b78a4f11b 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ p5.js is a free and open-source JavaScript library for accessible creative codin ```js function setup() {   createCanvas(400, 400); -   background(255); } + function draw() {   circle(mouseX, mouseY, 80); }