Message from discussion
fortran
Received: by 10.68.125.233 with SMTP id mt9mr14195965pbb.5.1335725010491;
Sun, 29 Apr 2012 11:43:30 -0700 (PDT)
MIME-Version: 1.0
Path: r9ni112953pbh.0!nntp.google.com!news2.google.com!news1.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!news-in-01.newsfeed.easynews.com!easynews!core-easynews-01!easynews.com!en-nntp-14.dc1.easynews.com.POSTED!ron-shepard
From: Ron Shepard <ron-shep...@NOSPAM.comcast.net>
Newsgroups: comp.lang.fortran
Subject: Re: fortran
Organization: little, if any
References: <6c62174c-bf4f-4f7e-ad44-3a036cbabb97@c28g2000vbu.googlegroups.com> <cp_mr.6281$v14.2984@viwinnwfe02.internal.bigpond.com> <jni1v2$8it$1@speranza.aioe.org> <176de066-a350-4cd9-b5eb-84e089963516@l3g2000vbv.googlegroups.com> <jnjds5$ck8$1@speranza.aioe.org> <ed1e843d-6df4-415f-902e-f0856a89dd98@q13g2000vbd.googlegroups.com> <jnji9r$p55$1@speranza.aioe.org> <2d93f4d9-018b-4364-b189-477f4209c1fa@f5g2000vby.googlegroups.com> <jnjndt$8c9$1@speranza.aioe.org> <jnjouo$crn$1@speranza.aioe.org> <ce628024-7bf3-402b-afa4-4c20ccc25ed0@a5g2000vbl.googlegroups.com> <jnju7l$sf5$1@speranza.aioe.org> <jnk0ac$33m$1@speranza.aioe.org>
User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X)
Message-ID: <ron-shepard-6AAA99.13432829042012@news60.forteinc.com>
Lines: 24
X-Complaints-To: abuse@easynews.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Sun, 29 Apr 2012 13:43:28 -0500
X-Received-Bytes: 2427
In article <jnk0ac$33...@speranza.aioe.org>, dpb <n...@non.net>
wrote:
> But, afaik there is no F77 compiler that doesn't
> include accepting lowercase in source code so I've not modified your
> typing in that regards.
This is largely true, but there were f77 compilers that, by default,
would take lower case characters and treat them as distinct from
upper case (i.e. following the C language conventions).
Although there have been numerous discussions about this here in
c.l.f over the past 20 years, the above is generally regarded as an
extension of the f77 language. On the other hand, treating lower
and upper case as indistinguishable was *not* an extension to the
language, but rather falls into the category of source code
transcription, which is explicitly mentioned as something that is
not covered by the standard. F90 and later specified that lower and
upper case characters should be indistinguishable (except for
character strings, of course); this is compatible with the f77
standard, but obviously not with those with the extension that
treated lower and upper case as distinct.
$.02 -Ron Shepard