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 X-Google-Thread: a07f3367d7,20280f498071efd3 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!goblin1!goblin.stu.neva.ru!feeder.eternal-september.org!eternal-september.org!.POSTED!not-for-mail From: Colin Paul Gloster Newsgroups: comp.lang.ada Subject: Re: Software Quality in Science Date: Mon, 15 Feb 2010 18:48:28 +0000 Organization: A noiseless patient Spider Message-ID: References: <1198a288-b013-45a8-907f-7fe227e6294e@m27g2000prl.googlegroups.com> <04185bf3-f83a-4fbe-b380-c6d8aa4105e6@w27g2000pre.googlegroups.com> <87fx59p725.fsf@mid.deneb.enyo.de> Reply-To: Colin Paul Gloster Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Injection-Date: Mon, 15 Feb 2010 18:50:44 +0000 (UTC) Injection-Info: feeder.eternal-september.org; posting-host="kheEuXGHhE2Z5eF1gAST+A"; logging-data="1366"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19ZV7OySlqhB5OSh35LfDrb+pdg+uNlj0y9WBWIjvfuAg==" User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) In-Reply-To: Cancel-Lock: sha1:NO2xt4DeP1r9PJfDq9+NxxwSKSI= X-X-Sender: Colin_Paul@Bluewhite64.example.net Xref: g2news1.google.com comp.lang.ada:9244 Date: 2010-02-15T18:48:28+00:00 List-Id: On Wed, 10 Feb 2010, Florian Weimer wrote: |-------------------------------------------------------------------| |"[..] | | | |even lines of code) vary as much among programmers [..]" | |-------------------------------------------------------------------| Colin Paul Gloster responded: |----------------| |"Of course. [..]| | | |[..]" | |----------------| On Mon, 15 Feb 2010, Maciej Sobczak wrote: |------------------------------------------------------------------| |"On 15 Lut, 12:20, Colin Paul Gloster | |wrote: | | | |> if (condition) statement; | | | |In Ada that would be: | | | |if Condition then Statement; end if; | | | |which is equally ugly. | |Could you clarify your point?" | |------------------------------------------------------------------| Of course <=> Yes. Yes even #lines of code vary among programmers. Given one programmer and C++ then if (condition) statement; would result whereas changing the language but not the programmer would result in if Condition then Statement; end if; A different programmer would produce if (condition) { statement; } or if Condition then Statement; end if; depending on language. Yet a different programmer would produce if (condition { statement; } or if Condition then Statement; end if; depending on language.