Groups | Search | Server Info | Login | Register


Groups > comp.os.linux.misc > #59001

Re: The joy of FORTRAN

From moi <findlaybill@blueyonder.co.uk>
Newsgroups alt.folklore.computers, comp.os.linux.misc
Subject Re: The joy of FORTRAN
Date 2024-10-03 17:32 +0100
Message-ID <lm7v82Fl53aU1@mid.individual.net> (permalink)
References (16 earlier) <llv30aFa6uvU3@mid.individual.net> <vde4b8$268qv$22@dont-email.me> <1396870532.749421730.052473.peter_flass-yahoo.com@news.eternal-september.org> <wrapper-20241001111737@ram.dialup.fu-berlin.de> <6tydnW_-XuPramH7nZ2dnZfqn_WdnZ2d@earthlink.com>

Cross-posted to 2 groups.

Show all headers | View raw


On 02/10/2024 08:34, 186282@ud0s4.net wrote:
> On 10/1/24 6:24 AM, Stefan Ram wrote:
>> Peter Flass <peter_flass@yahoo.com> wrote or quoted:
>>> The Natural Philosopher <tnp@invalid.invalid> wrote:
>>>> printf("hello world"); That's bug proof.
>>> Wait, what? Where’s your error checking? What if your printf fails?
>>> Actually that’s one of the things I like least about C. It leaves all 
>>> error
>>> checking up to the programmer instead of having even a minimal 
>>> handler for
>>> errors not otherwise caught.
>>
>>    You could write a wrapper for printf, "myprintf",
>>    that will call printf and then do minimal error handling.
>>
>> #include <stdio.h>
>> #include <stdarg.h>
>>
>> int myprintf( char const * format, ... )
>> { va_list args;
>>    va_start( args, format );
>>    int const result = vprintf( format, args );
>>    va_end( args );
>>    if( result < 0 )fprintf
>>    ( stderr, "Error: printf failed with return code %d\n", result );
>>    return result; }
> 
>    The whole context of 'C' was that COMPETENT PROGRAMMERS
>    existed and could/would assess error conditions as THEY
>    chose to do so.

The reality of C is that even competent programmers find this
very difficult and often make elementary mistakes with potentially
serious consequences, as we see on a daily basis.

-- 
Bill F.

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-26 17:52 -0700
  Re: The joy of FORTRAN geodandw <geodandw@gmail.com> - 2024-09-26 21:20 -0400
    Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-09-27 17:43 +0000
      Re: The joy of FORTRAN geodandw <geodandw@gmail.com> - 2024-09-27 15:09 -0400
        Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-09-27 20:38 +0000
          Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-27 23:43 +0000
            Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-09-29 04:26 +0000
              Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-29 05:36 +0000
          Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-09-28 03:18 -0400
            Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-09-28 09:12 +0100
              Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-28 08:24 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-09-29 01:28 -0400
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-29 05:42 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-09-29 20:00 +0000
                Re: The joy of FORTRAN Harold Stevens <wookie@aspen.localdomain> - 2024-09-29 17:08 -0500
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-29 23:28 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-09-29 23:36 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-09-30 07:40 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 07:52 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-09-30 20:19 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-09-30 13:08 +0100
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-30 14:19 -0700
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-02 03:34 -0400
                Re: The joy of FORTRAN moi <findlaybill@blueyonder.co.uk> - 2024-10-03 17:32 +0100
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 01:06 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-01 01:42 +0000
                OT ; Re: The joy of FORTRAN Bobbie Sellers <blissInSanFrancisco@mouse-potato.com> - 2024-09-30 08:36 -0700
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-09-30 17:00 +0100
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 21:57 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 00:51 +0000
                Re: OT ; Re: The joy of FORTRAN Bobbie Sellers <blissInSanFrancisco@mouse-potato.com> - 2024-09-30 20:32 -0700
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-01 16:37 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:02 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 16:43 +0000
                Re: OT ; Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-02 18:07 -0700
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-01 13:51 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 19:00 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:18 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 16:41 +0000
                Re: OT ; Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-30 14:19 -0700
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 23:34 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 19:03 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-01 22:00 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 02:40 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 03:05 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 07:29 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 08:30 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 16:46 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 18:11 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 22:33 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 23:53 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 02:10 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 03:48 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-03 10:56 +0100
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-03 15:34 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 18:38 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 22:26 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 03:26 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 03:54 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:47 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 19:39 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 22:24 +0000
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-03 23:55 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 00:38 +0000
                Re: OT ; Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-03 18:11 -0700
                Re: OT ; Re: The joy of Population Growth Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 01:46 +0000
                Re: OT ; Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-04 10:20 +0200
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:39 +0100
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-04 17:06 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 19:46 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:33 +0100
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-04 17:06 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 03:01 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 03:53 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 07:45 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:44 +0100
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 19:44 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 20:32 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 20:31 +0000
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 23:52 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 06:16 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:39 +0100
                Re: OT ; Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-04 16:40 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 21:05 +0100
                Re: OT ; Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-05 02:37 +0000
                Re: OT ; Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-02 18:07 -0700
                Re: OT ; Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 02:20 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-03 10:52 +0100
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 22:22 +0000
                Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-03 23:55 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 00:37 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 02:53 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 03:53 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 07:42 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 20:18 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 23:29 +0000
                Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-04 16:46 -0700
                Re: The joy of Democracy Niklas Karlsson <nikke.karlsson@gmail.com> - 2024-10-05 08:31 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 06:19 +0000
                Re: The joy of 1950s Democracy John Levine <johnl@taugh.com> - 2024-10-05 15:51 +0000
                Re: The joy of Democracy geodandw <geodandw@gmail.com> - 2024-10-10 12:18 -0400
                Re: The joy of Democracy D <nospam@example.net> - 2024-10-04 10:21 +0200
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 19:19 +0000
                Re: The joy of Democracy D <nospam@example.net> - 2024-10-04 22:24 +0200
                Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-04 17:06 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 19:22 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 20:30 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 23:14 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 06:22 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-05 07:03 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 08:07 +0000
                Re: The joy of Democracy "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-05 23:59 -0400
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-06 13:44 +0000
                Re: The joy of Democracy geodandw <geodandw@gmail.com> - 2024-10-10 12:22 -0400
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-04 20:26 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-04 23:42 +0000
                Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-05 07:57 -0700
                Re: The joy of Democracy R Daneel Olivaw <Danny@hyperspace.vogon.gov> - 2024-10-05 22:52 +0200
                Re: The joy of Democracy John Levine <johnl@taugh.com> - 2024-10-05 22:20 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-06 03:21 +0000
                Re: The joy of Democracy doctor@doctor.nl2k.ab.ca (The Doctor) - 2024-10-06 12:32 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 23:14 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-06 03:17 +0000
                Re: The joy of Democracy Lars Poulsen <lars@cleo.beagle-ears.com> - 2024-10-05 19:04 +0000
                Re: The joy of Democracy rbowman <bowman@montana.com> - 2024-10-06 03:12 +0000
                Re: The joy of Democracy Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-05 02:37 +0000
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 06:24 +0000
                Re: The joy of Democracy The Natural Philosopher <tnp@invalid.invalid> - 2024-10-05 12:40 +0100
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-05 23:46 +0000
                Re: The joy of Democracy Peter Flass <peter_flass@yahoo.com> - 2024-10-06 15:58 -0700
                Re: The joy of Democracy Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-06 23:18 +0000
                Re: OT ; Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-03 16:34 -0700
                Re: OT ; Re: The joy of FORTRAN Niklas Karlsson <nikke.karlsson@gmail.com> - 2024-10-04 11:03 +0000
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 22:12 +0000
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:22 +0100
                Re: OT ; Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:20 +0100
                Re: OT ; Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 22:13 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-30 14:19 -0700
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-09-30 14:43 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 18:52 +0000
                Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2024-10-01 09:29 -1000
                Re: The joy of FORTRAN Lynn Wheeler <lynn@garlic.com> - 2024-10-01 13:30 -1000
                Re: The joy of RISC Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 00:56 +0000
                Re: The joy of RISC Lynn Wheeler <lynn@garlic.com> - 2024-10-01 15:39 -1000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-09-30 12:48 +0100
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-09-30 21:58 +0000
                Re: The joy of FORTRAN candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-10-03 16:00 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 22:26 +0000
                Re: The joy of FORTRAN candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2024-10-03 22:40 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-03 15:52 -0700
                Re: The joy of FORTRAN scott@slp53.sl.home (Scott Lurndal) - 2024-10-04 16:46 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-04 10:41 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 19:11 +0000
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-04 12:15 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-04 22:35 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-04 23:44 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-07 07:56 -0700
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-03 23:07 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-04 10:44 +0100
                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 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 10:16 +0200
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-17 18:48 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-17 11:03 +0100
                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 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
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 01:19 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-09-29 22:38 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-09-30 07:26 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-09-30 04:08 -0400
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-30 14:19 -0700
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-01 00:56 -0400
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-01 07:54 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-01 18:44 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-01 21:28 +0200
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-01 12:57 -0700
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 02:12 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-01 23:48 -0400
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 07:27 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 08:31 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 16:21 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-02 17:29 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:14 +0100
                Re: The joy of FORTRAN John Ames <commodorejohn@gmail.com> - 2024-10-02 08:24 -0700
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-02 17:29 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 18:41 +0100
                Re: The joy of FORTRAN Rich <rich@example.invalid> - 2024-10-17 14:53 +0000
                Re: The joy of FORTRAN Louis Krupp <lkrupp@invalid.pssw.com.invalid> - 2024-10-04 17:37 -0600
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-05 01:39 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-05 02:37 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-05 11:55 +0200
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-06 02:32 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-06 06:05 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-06 11:41 +0200
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-06 13:43 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-06 11:38 +0200
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-06 18:00 +0000
                Re: The joy of FORTRAN D <nospam@example.net> - 2024-10-06 22:02 +0200
                Re: The joy of FORTRAN Chris Ahlstrom <OFeem1987@teleworm.us> - 2024-10-06 07:05 -0400
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-06 15:58 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-06 23:22 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-07 03:13 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-07 06:40 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-07 18:43 +0000
                Re: The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2024-10-07 19:17 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-07 20:33 +0000
                Re: The joy of FORTRAN ted@loft.tnolan.com (Ted Nolan <tednolan>) - 2024-10-07 20:35 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-07 20:35 +0000
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2024-10-08 11:18 +0100
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:09 +0100
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:08 +0100
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-01 23:27 -0400
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 11:06 +0100
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 16:29 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 17:52 +0100
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-02 17:29 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 22:06 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 22:26 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 01:22 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 01:27 +0000
                Re: The joy of FORTRAN Don_from_AZ <djatechNOSPAM@comcast.net.invalid> - 2024-10-02 20:13 -0700
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 03:50 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 05:46 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 05:59 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 18:27 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-02 18:07 -0700
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-03 15:34 +0000
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-03 21:56 +0000
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-02 22:03 +0000
                Re: The joy of FORTRAN "186282@ud0s4.net" <186283@ud0s4.net> - 2024-10-02 23:03 -0400
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-03 15:34 +0000
                Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-10-02 17:29 +0000
                Re: The joy of FORTRAN The Natural Philosopher <tnp@invalid.invalid> - 2024-10-02 18:39 +0100
                Re: The joy of FORTRAN Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-10-02 22:21 +0000
                Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-10-02 18:07 -0700
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2024-10-03 09:56 +0100
                Re: The joy of FORTRAN rbowman <bowman@montana.com> - 2024-10-03 18:31 +0000
                Re: The joy of FORTRAN "Kerr-Mudd, John" <admin@127.0.0.1> - 2024-10-03 20:44 +0100
            Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-28 10:54 -0700
          Re: The joy of FORTRAN Peter Flass <peter_flass@yahoo.com> - 2024-09-28 10:54 -0700
  Re: The joy of FORTRAN Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2024-09-27 17:43 +0000

csiph-web