There is no 'y' character in this code and I am not missing a semicolon anywhere yet line 19 is highlighted when I try to run and it suggests I am missing a semicolon. Troubleshooting techniques for this kind of error message?
- class Droplet {
- float posX, posY;
- Droplet(float posX, float posY) {
- this.posX = posX;
- this.posY = posY;
- }
- void cascade(String[] sqMove) {
- fill(82,86,240);
- ellipseMode(CENTER);
- for(int i=0; i<sqMove.length; i++) {
- println(sqMove[i]);
- int[] pieces = int(split(sqMove[i], ' '));
- ellipse(pieces[0], pieces[1], electSize, electSize);
- delay(100);
- }
- }
- }
1