Groups | Search | Server Info | Keyboard shortcuts | Login | Register
Groups > comp.os.linux.misc > #59594
| From | rbowman <bowman@montana.com> |
|---|---|
| Newsgroups | alt.folklore.computers, comp.os.linux.misc |
| Subject | Re: The joy of FORTRAN |
| Date | 2024-10-19 03:03 +0000 |
| Message-ID | <lnglsrFs9nrU7@mid.individual.net> (permalink) |
| References | (19 earlier) <20241017090224.000072ce@gmail.com> <20241017203051.3143245f5330ac675cc1c166@127.0.0.1> <WUqdndxzb5qBRoz6nZ2dnZfqnPGdnZ2d@earthlink.com> <lne6rsFh72qU1@mid.individual.net> <vessel$35pc2$1@dont-email.me> |
Cross-posted to 2 groups.
On Fri, 18 Oct 2024 05:41:41 -0000 (UTC), Lawrence D'Oliveiro wrote:
> On 18 Oct 2024 04:35:09 GMT, rbowman wrote:
>
>> Our source tree still has vestiges of Fortran that go back more than 20
>> years and are strictly f77.
>>
>> recnum = 1 read(adrich,15,rec=recnum) totrec
>> 15 format(i10)
>>
>> 100 if(recnum.gt.totrec) goto 500
>> read(adrich,105,rec=recnum+1) ch
>> 105 format(1a1)
>
> You know that Fortran 77 introduced if-then and do-while, right?
In fact the continuation of the snippet is
105 format(1a1)
if(ch.ge.'A' .and. ch.le.'Z') then
index = ichar(ch) - 64
else if(ch.ge.'1' .and. ch.le.'9') then
index = ichar(ch) - 22
else
index = 36
endif
All the DO constructs are variations on
DO 11 k=1,strlen
STNAME(k) = ' '
11 CONTINUE
I'm not about to argue the niceties of ANSI Fortran 77 but
https://web.stanford.edu/class/me200c/tutorial_77/09_loops.html
while-loops
The most intuitive way to write a while-loop is
while (logical expr) do
statements
enddo
or alternatively,
do while (logical expr)
statements
enddo
The program will alternate testing the condition and executing the
statements in the body as long as the condition in the while statement is
true. Even though this syntax is accepted by many compilers, it is not
ANSI Fortran 77. The correct way is to use if and goto:
label if (logical expr) then
statements
goto label
endif
Back to comp.os.linux.misc | Previous | Next — Previous in thread | Next in thread | Find similar
Re: The joy of FORTRAN candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-10-09 18:10 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-09 16:36 -0400
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-10 01:05 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-10 07:25 -0400
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-10 10:16 +0100
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 01:37 +0000
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-11 14:43 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-11 18:29 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-11 17:59 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-11 21:17 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-11 23:22 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 00:43 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-12 07:03 -0400
Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-14 08:06 -0700
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-14 21:09 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-14 21:26 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-15 10:06 +0200
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-15 19:23 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-15 20:29 +0100
Re: The joy of FORTRAN Pancho <Pancho.Jones@proton.me> - 2024-10-16 08:36 +0100
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-16 16:16 +0000
Re: The joy of FORTRAN Pancho <Pancho.Jones@proton.me> - 2024-10-16 18:59 +0100
Re: The joy of FORTRAN songbird <songbird@anthive.com> - 2024-10-16 22:34 -0400
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-17 02:51 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 02:57 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-17 03:43 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 03:50 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 11:09 +0100
Re: The joy of FORTRAN Rich <rich@example.invalid> - 2024-10-17 13:22 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-17 19:21 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 22:23 +0200
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 14:10 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 15:13 +0100
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 15:14 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 16:22 +0100
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 15:29 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 18:31 +0100
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 22:27 +0200
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 21:39 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-18 10:14 +0200
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-20 22:02 +0200
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-20 23:18 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-21 10:12 +0200
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 22:25 +0200
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-20 22:01 +0200
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-21 12:00 +0100
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-21 21:39 +0200
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 21:03 +0000
Re: The joy of Democracy Dave Yeo <dave.r.yeo@gmail.com> - 2024-10-21 17:51 -0700
Re: The joy of Democracy D <nospam@example.net> - 2024-10-22 09:46 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 09:54 +0100
Re: The joy of Democracy D <nospam@example.net> - 2024-10-22 21:45 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-22 21:04 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 22:28 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 00:27 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 00:52 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-23 10:07 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 15:40 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 21:20 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-23 11:34 +0100
Re: The joy of Democracy vallor <vallor@cultnix.org> - 2024-10-23 18:00 +0000
Re: The joy of Democracy scott@slp53.sl.home (Scott Lurndal) - 2024-10-23 18:28 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-23 21:26 +0100
Re: The joy of Democracy Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-23 16:28 -0400
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 21:18 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 23:26 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-24 00:50 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-24 10:11 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-24 11:58 +0100
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-24 17:02 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-24 21:14 +0200
Re: The joy of Linux Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-24 20:58 +0000
Re: The joy of Linux scott@slp53.sl.home (Scott Lurndal) - 2024-10-24 22:30 +0000
Re: The joy of Linux rbowman <bowman@montana.com> - 2024-10-25 00:30 +0000
Re: The joy of Linux Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-25 01:36 +0000
Re: The joy of Linux rbowman <bowman@montana.com> - 2024-10-25 03:54 +0000
Re: The joy of Linux scott@slp53.sl.home (Scott Lurndal) - 2024-10-25 14:00 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 21:05 +0000
Re: The joy of Democracy scott@slp53.sl.home (Scott Lurndal) - 2024-10-23 22:03 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 23:39 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-24 10:12 +0200
Re: The joy of Democracy Lynn Wheeler <lynn@garlic.com> - 2024-10-22 14:04 -1000
Re: The joy of Patents Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 00:16 +0000
Re: The joy of Patents Lynn Wheeler <lynn@garlic.com> - 2024-10-22 15:40 -1000
Re: The joy of Patents Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 02:04 +0000
Re: The joy of Patents Lynn Wheeler <lynn@garlic.com> - 2024-10-23 01:15 -1000
Re: The joy of Patents Lynn Wheeler <lynn@garlic.com> - 2024-10-25 07:46 -1000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 00:27 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-23 10:02 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 15:40 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-23 21:40 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-24 20:02 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-25 10:59 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-25 10:29 +0100
Re: The joy of Democracy D <nospam@example.net> - 2024-10-25 22:11 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-26 04:38 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-26 12:18 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-26 18:01 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-26 22:06 +0200
Re: The joy of Democracy D <nospam@example.net> - 2024-10-25 22:12 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-25 22:43 +0100
Re: The joy of Democracy D <nospam@example.net> - 2024-10-26 12:22 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-23 21:25 +0100
Re: The joy of Democracy D <nospam@example.net> - 2024-10-24 10:09 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 09:38 +0100
Re: The joy of Democracy Pancho <Pancho.Jones@proton.me> - 2024-10-22 10:01 +0100
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 12:20 +0100
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 17:34 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 20:58 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 00:38 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 00:54 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 01:49 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-23 02:08 +0000
Re: The joy of Democracy "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-24 00:38 -0400
Re: The joy of Democracy "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-22 22:40 -0400
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 20:55 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:35 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-21 01:27 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 22:24 +0200
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 22:22 +0200
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 21:38 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-18 10:14 +0200
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-17 10:16 +0200
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 18:48 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-17 22:02 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 23:39 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-17 23:47 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-18 00:47 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 00:56 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:30 +0100
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:16 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-19 03:15 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 05:26 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-19 17:26 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 21:49 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-20 03:57 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 05:28 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-20 19:00 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:30 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 01:41 +0000
Re: The joy of Democracy Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-21 07:11 -0400
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-21 12:40 +0100
Re: The joy of Democracy Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-21 10:00 -0400
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-21 16:42 +0000
Re: The joy of Democracy Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-21 13:28 -0400
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-22 20:51 +0000
Re: The joy of Video Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 22:27 +0000
Re: The joy of Video Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 00:27 +0000
Re: The joy of Video rbowman <bowman@montana.com> - 2024-10-23 01:36 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 19:33 +0000
Re: The joy of Democracy scott@slp53.sl.home (Scott Lurndal) - 2024-10-21 19:58 +0000
Re: The joy of Democracy Lars Poulsen <lars@cleo.beagle-ears.com> - 2024-10-21 20:17 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 23:02 +0000
Re: The joy of Democracy scott@slp53.sl.home (Scott Lurndal) - 2024-10-21 23:25 +0000
Re: 99 bottles of booze on the wall, was The joy of Democracy John Levine <johnl@taugh.com> - 2024-10-21 23:43 +0000
The joy of the metric system Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-21 16:28 -0400
Re: The joy of the metric system Dave Yeo <dave.r.yeo@gmail.com> - 2024-10-21 17:59 -0700
Re: The joy of the metric system rbowman <bowman@montana.com> - 2024-10-22 04:41 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 21:00 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 23:09 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 23:14 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 00:44 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 01:16 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 05:58 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-22 20:51 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 00:45 +0000
Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-22 11:14 -0700
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 00:32 +0000
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 03:54 +0000
Re: vive la whatever, The joy of Democracy John Levine <johnl@taugh.com> - 2024-10-22 01:17 +0000
Re: vive la whatever, The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 06:14 +0000
Re: vive la whatever, The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-22 11:14 -0700
Re: vive la whatever, The joy of Democracy D <nospam@example.net> - 2024-10-22 09:58 +0200
Re: vive la whatever, The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-22 11:14 -0700
Re: The joy of Democracy D <nospam@example.net> - 2024-10-22 09:43 +0200
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-22 20:51 +0000
Re: The joy of SI Units Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 22:25 +0000
Re: The joy of SI Units Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-23 00:27 +0000
Re: The joy of Democracy p.dean@invalid.net (Peter Dean) - 2024-10-22 22:50 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 00:57 +0000
Re: The joy of Democracy p.dean@invalid.net (Peter Dean) - 2024-10-23 03:26 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 00:49 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-20 10:33 +0100
Re: The joy of Democracy D <nospam@example.net> - 2024-10-20 21:59 +0200
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-21 11:58 +0100
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 21:02 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:34 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 18:52 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 21:50 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-20 01:36 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 05:00 +0000
Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-19 10:26 +0100
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-19 18:53 +0200
Re: The joy of Democracy Lars Poulsen <lars@cleo.beagle-ears.com> - 2024-10-19 17:08 +0000
Re: The joy of Democracy David LaRue <huey.dll@tampabay.rr.com> - 2024-10-19 17:27 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 18:59 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 21:52 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-20 01:52 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-20 10:21 +0100
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-20 16:48 +0000
Re: The joy of Democracy scott@slp53.sl.home (Scott Lurndal) - 2024-10-19 19:48 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-18 18:44 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:16 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-19 17:26 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:18 +0100
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:17 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-17 13:09 -0700
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-17 22:03 +0000
Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-17 22:22 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 23:39 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-17 23:47 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-18 01:01 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 03:25 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-18 04:52 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 05:45 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 03:27 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 05:24 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-19 11:14 +0200
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 19:09 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-19 22:11 +0200
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-20 02:06 +0000
Re: The joy of Democracy D <nospam@example.net> - 2024-10-20 11:31 +0200
Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:23 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 01:51 +0000
Re: The joy of Democracy Lynn Wheeler <lynn@garlic.com> - 2024-10-18 07:48 -1000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:29 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 03:40 +0000
Re: The joy of Democracy Lynn Wheeler <lynn@garlic.com> - 2024-10-18 17:49 -1000
Re: The joy of Democracy Lynn Wheeler <lynn@garlic.com> - 2024-10-20 14:19 -1000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:27 +0100
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-19 03:20 +0000
Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:24 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 02:04 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-18 00:53 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-20 22:03 +0200
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-21 01:19 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-20 21:26 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-21 00:45 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-21 03:28 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-17 23:18 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-18 10:13 +0200
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-19 03:17 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:26 +0100
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 11:03 +0100
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-17 19:24 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:22 +0100
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-19 02:45 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-21 11:50 +0100
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-21 16:42 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-21 17:53 +0100
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 20:58 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-21 23:17 +0000
Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-22 01:14 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 06:30 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 09:27 +0100
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 09:22 +0100
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-22 17:30 +0000
Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-22 18:36 +0100
Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-22 20:51 +0000
Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-22 11:14 -0700
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 01:09 +0000
Re: The joy of Democracy Allodoxaphobia <trepidation@example.net> - 2024-10-23 13:29 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 19:59 +0000
Re: The joy of Democracy Alfred Falk <aefalk@telus.net> - 2024-10-23 15:32 +0000
Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-23 20:05 +0000
Re: The joy of Democracy "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-24 02:30 -0400
Re: The joy of Democracy Allodoxaphobia <trepidation@example.net> - 2024-10-22 20:08 +0000
Re: The joy of Science Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-21 20:56 +0000
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-16 19:58 +0100
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-16 13:40 -0700
Re: The joy of FORTRAN R Daneel Olivaw <Danny@hyperspace.vogon.gov> - 2024-10-17 10:17 +0200
Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-17 09:02 -0700
Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2024-10-17 20:30 +0100
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-17 22:01 +0000
Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-17 23:50 -0400
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 04:17 +0000
Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-18 02:15 -0400
Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-18 11:25 +0100
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:10 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-18 04:35 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 05:41 +0000
Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-18 02:25 -0400
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-18 18:44 +0000
Re: The joy of Typography Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-18 21:15 +0000
Re: The joy of Typography 186282ud0s3 <186283@ud0s4.net> - 2024-10-18 19:59 -0400
Re: The joy of Typography Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-19 17:26 +0000
Re: The joy of Typography The Natural Philosopher <tnp@invalid.invalid> - 2024-10-19 19:43 +0100
Re: The joy of Typography Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 21:53 +0000
Re: The joy of Typography John Ames <commodorejohn@gmail.com> - 2024-10-21 08:15 -0700
Re: The joy of Typography Rich <rich@example.invalid> - 2024-10-19 20:03 +0000
Re: The joy of Typography Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-19 17:26 +0000
Re: The joy of Typography Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 21:58 +0000
Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-20 12:04 -0700
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-19 03:03 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-19 05:32 +0000
Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-15 22:13 +0200
Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-14 08:19 -0700
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-12 02:07 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 02:30 +0000
Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-12 17:34 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 21:37 +0000
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-13 00:23 +0000
Re: The joy of FORTRAN Schlomo Goldberg <schlomo.goldberg@mailinator.com> - 2024-10-12 02:35 +0000
Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-12 07:44 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-11 19:05 -0400
Re: The joy of FORTRAN candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-10-10 18:10 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-11 10:59 -0400
Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-11 18:33 +0000
Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-11 19:04 -0400
csiph-web