From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: Re: a question of form Date: Tue, 26 Aug 2014 02:04:52 -0500 Organization: Aioe.org NNTP Server Message-ID: References: <8f4fc25e-2039-429c-a5d5-97c450b87078@googlegroups.com> Reply-To: nma@12000.org NNTP-Posting-Host: 8191zydiUczc0pMLMoJheA.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 X-Notice: Filtered by postfilter v. 0.8.2 Xref: news.eternal-september.org comp.lang.ada:21921 Date: 2014-08-26T02:04:52-05:00 List-Id: On 8/25/2014 3:33 PM, gdotone@gmail.com wrote: > reading Ada 95 second edition, by feldman and koffman, the authors suggest >that all reserve words be in caps and identifiers start with a capital letter, etc... > > the authors do note that Ada is not case sensitive. > > what is the general place in the real world of program form today? > > g. > lower case variables is best with _, like_this I find using Upper_First_Letter not good for reading: Like_This I like bold/daker font for keywords (but lower case), to distinguish them from normal text and user variables. Upper first letter case is best for package names and classes, but not for user variables and function names and type names. my 2.5 cents --Nasser