function naming conventions

Hi all
As a newbie to the arduino (I'm from a pic background) I really like being able to program the device in C.

just a note though, that I do find the lack of standardisation on functions to be a bit of a pain. For example Serial.write compared to digitalWrite a change of case and a delimiter makes for a number of compiler errors. it would be helpful if the case of the syntax didn't matter.

Serial.write() is a reference to a member function of the object "Serial".
digitalWrite() is a reference to a global function.

The language is case sensitive. Get used to it.