Serial.println

what this mean void Print::println? it is not usual to see this, i think

It means "println" is a member of the class "Print", and is a "void" (i.e. it doesn't return a value) function.
That's C++, and perfectly usual.

You'll see that that there are different versions of the functions, distinguished only by their parameter types. This is called "overloading"