Closed
Description
Nature of issue?
- Found a bug
- Existing feature enhancement
- New feature request
Details about the bug:
When I try to use the exponentiation operator, it says it's an error.
- Web browser and version: Firefox 62.0.3
- Operating System: Windows 10
- Steps to reproduce this: write any line of code with the exponentiation operator.
function setup() {
createCanvas(2 ** 8, 2 ** 7);
}
function draw() {
background(220);
}