@moerm > So I find it utterly illogical to have Myvar, myvar, MyVar,My_var, my_var, > My_Var, all boiling down to one and the same.
They are not one and the same. The first letter is case-sensitive. * * * @shashlick > my vote is to liberalize further - no restrictions with (...) case sensitive > first letter. I don't know of a good reason to maintain those No no no. I know a good reason for case sensitive first letter, and it is crucial: Types names have upper first letter (and people should adhere to this!), variables, functions, etc. have lower first letter. And this allows for stuff like `person: Person`, etc.
