println

what is the gramma to write this

println ("And the value is: ), value;

can't find a single example :frowning:

I think you're looking for something like

Serial.print("And the value is: ");
Serial.println(value);

But I may not be understanding what "gramma" is.

Hi,
"gramma" == grammer , in this case as in format of how to write something constructive.

Tom...