Open
Description
p5.js version
v1.9.4
What is your operating system?
Windows
Web browser and version
chrome 125.0.6422.113
Actual Behavior
Japanese language shows in the console panel when I'm setting the language as English.
I have tried to set OS language as English but still shows Japanese in the console.
Expected Behavior
Steps to reproduce
Steps:
- select English from the top right on the editor.
- type any wrong code e.g aa in the draw function.
Snippet:
// Paste your code here :)
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
aa
}