From: Florian H. <ha...@bi...> - 2003-03-04 17:28:58
|
Blair Zajac wrote: > Given William's point of code reviews and more people reading a piece > of code than writing it, [...] > Words are concatenated together with no additional characters, such as _. Words should never run into another, but be properly separated by characters like _. man perlstyle: While short identifiers like $gotit are probably ok, use underscores to separate words. It is generally easier to read $var_names_like_this than $VarNamesLikeThis, especially for non-native speakers of English. Would you want perl to be more readable than ocaml? Yours, Florian Hars. |