Copied out of the book - Uncaught ReferenceError: printArray is not definedShow stack

Capture4

float[] f = { 0.3, 0.4, 0.5 };

void setup(){
size(100,100);
background(100);

printArray(f);

}

I tested the code above and it works on Win 10 OS and P3.5.3. What is your OS and your version of Processing?

Kf