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=2.0 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,7ba49aac4e73460 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.226.10 with SMTP id ro10mr8361950pbc.6.1329093825056; Sun, 12 Feb 2012 16:43:45 -0800 (PST) Path: wr5ni18001pbc.0!nntp.google.com!news1.google.com!goblin1!goblin.stu.neva.ru!news.tornevall.net!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: Re: Need Help On Ada95 Problem Date: Sun, 12 Feb 2012 18:43:43 -0600 Organization: Aioe.org NNTP Server Message-ID: References: <553ceec3-ec34-41de-9723-0dc342379cfe@vv9g2000pbc.googlegroups.com> <4ea6309f-cf07-44f6-8c56-5189a0081dcc@g27g2000yqa.googlegroups.com> <43ebdc77-d90a-4213-8e74-db92ad373e14@m7g2000vbw.googlegroups.com> Reply-To: nma@12000.org NNTP-Posting-Host: sNVsKVV0CtTJ0mbC0Ebx8A.user.speranza.aioe.org Mime-Version: 1.0 X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 X-Notice: Filtered by postfilter v. 0.8.2 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Date: 2012-02-12T18:43:43-06:00 List-Id: On 2/12/2012 4:26 PM, Robert A Duff wrote: > > You should use standard recommended style conventions. > It makes it easier for other Ada programmers to read your code. > "Letter_Wheel : String ...". > This is a terrible choice of the Ada standard for variable names convention. Variable names should be all lower case, as in letter_wheel easier to read, easier on the eye since it is uniform size, vs. Letter_Wheel Many other languages uses the convention of lower case only for variable names. Sorry, do not mean to jump in like this, or change the topic, but this is something I always disliked about Ada code. Makes it ugly for me to read with variables using MiXed Upper_Case like this. But, since it is the convention, I agree with you that it should be followed, even if one does not like it. regards, --Nasser