Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #70078

Re: "Know Your Language: C Rules Everything Around Me (Part One)"

From Ben Bacarisse <ben.usenet@bsb.me.uk>
Newsgroups comp.lang.c
Subject Re: "Know Your Language: C Rules Everything Around Me (Part One)"
Date 2015-09-09 22:07 +0100
Organization A noiseless patient Spider
Message-ID <87fv2njo8k.fsf@bsb.me.uk> (permalink)
References (1 earlier) <a08888a4-efba-45cd-a44e-f422abd932e0@googlegroups.com> <87a8svluqc.fsf@bsb.me.uk> <2e35514d-e711-4a6e-a72a-93f852e2bcc5@googlegroups.com> <87y4gfk0ns.fsf@bsb.me.uk> <slrnmv13em.eij.grahn+nntp@frailea.sa.invalid>

Show all headers | View raw


Jorgen Grahn <grahn+nntp@snipabacken.se> writes:

> On Wed, 2015-09-09, Ben Bacarisse wrote:
>> Malcolm McLean <malcolm.mclean5@btinternet.com> writes:
>>
>>> On Wednesday, September 9, 2015 at 12:04:22 PM UTC+1, Ben Bacarisse wrote:
>>>> Malcolm McLean <malcolm.mclean5@btinternet.com> writes:
>>>> <snip>
>>>> > I realise what we need. Not C--, but B64.
>>>> 
>>>> BCPL (in many ways a better B) is, I think, available in a 64-bit
>>>> version.  Martin Richards (the originator of BCPL) has even made a new
>>>> language, MCPL which is BCPL with "pattern matching" al la ML.
>>>> 
>>> My view is that regular expressions are a red herring.
>>
>> Yes, they have nothing to do with MCPL.  Pattern matching al la ML is
>> for deconstructing objects.  It gives you more readable code when
>> handling data structures wich is something that is often rather obtuse
>> in typeless languages.
>
> To avoid misinterpretation: /ML/ is a strongly (and statically) typed
> language.  (A lot like Haskell, which I guess more people are familiar
> with today.)

Yes, good point.  While MCPL is typeless, ML has a rich type system and
this was not entirely clear from my wording.

To give an MCPL example, the pattern

  : [left, data(>max), right] => ...

only matches a chunk of memory where the second item is greater than
some known value (called max), but at the same time the names left, data
and right are bound to the values in the first three cells of the chunk.
They can then be used in the commands the follow the =>.  In MCPL, it
provides a way to do mult-way conditionals while, at the same time,
avoiding lots of explicit accesses.

-- 
Ben.

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

"Know Your Language: C Rules Everything Around Me (Part One)" Lynn McGuire <lmc@winsim.com> - 2015-09-08 21:08 -0500
  Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-09 00:16 -0700
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-09 12:04 +0100
      Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-09 04:24 -0700
        Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-09 17:39 +0100
          Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-09 11:01 -0700
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-09 19:37 +0100
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-09 20:13 +0100
          Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-09 19:51 +0000
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-09 22:07 +0100
        Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-09 20:02 +0000
          Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-09 16:13 -0700
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-10 00:46 +0100
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-09 17:20 -0700
              Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-09 17:49 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-10 12:54 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-09 18:15 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-09 21:13 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-10 16:30 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-10 07:13 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-10 07:05 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-10 10:40 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-10 10:27 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-10 02:30 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-10 11:42 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-10 03:44 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" August Karlstrom <fusionfile@gmail.com> - 2015-09-10 17:42 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-15 20:17 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-15 17:08 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 03:32 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-15 20:46 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 08:51 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" August Karlstrom <fusionfile@gmail.com> - 2015-09-17 11:04 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-21 13:21 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" August Karlstrom <fusionfile@gmail.com> - 2015-09-27 20:21 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-09-10 11:26 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-10 05:13 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-10 13:23 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-10 05:34 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-10 13:46 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-10 16:17 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-10 22:52 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-11 12:17 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-11 15:59 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-11 10:01 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jadill33@gmail.com - 2015-09-11 08:48 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-11 17:20 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jadill33@gmail.com - 2015-09-11 10:40 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-11 11:14 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Gareth Owen <gwowen@gmail.com> - 2015-09-12 06:46 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-11 08:59 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-11 11:23 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-11 18:40 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-11 22:44 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Gareth Owen <gwowen@gmail.com> - 2015-09-12 06:54 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-11 23:13 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-12 15:16 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jacobnavia <jacob@jacob.remcomp.fr> - 2015-09-12 17:51 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-13 17:01 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-11 18:18 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-12 15:28 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-12 16:00 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-13 23:07 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 16:56 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Richard Heathfield <rjh@cpax.org.uk> - 2015-09-14 01:08 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 10:31 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 03:56 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 14:31 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 05:49 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 01:55 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 13:23 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 11:35 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 14:04 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-15 10:22 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 13:07 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-14 13:23 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 06:32 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 16:44 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 18:25 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 21:48 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-14 21:23 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-15 09:07 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 11:40 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-15 13:32 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-15 14:13 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 15:53 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 18:22 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-15 22:13 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 00:55 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 03:51 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 10:34 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 12:43 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 13:12 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 14:46 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 17:26 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-16 17:35 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 10:48 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 19:53 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 12:28 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-16 19:35 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 13:11 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-16 21:59 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" "Charles Richmond" <numerist@aquaporin4.com> - 2015-09-17 01:12 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 21:11 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 13:53 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 23:07 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 23:10 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 10:26 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 22:59 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 13:15 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 08:35 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 15:40 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 11:16 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 10:38 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 09:17 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 11:08 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 11:52 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 12:33 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 12:55 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 13:20 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 14:32 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-17 22:52 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 16:47 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-18 10:00 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-18 11:14 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" wssimms@gmail.com - 2015-09-18 19:47 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" wssimms@gmail.com - 2015-09-18 19:56 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-19 03:57 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-09-23 12:32 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:28 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 16:32 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-16 11:03 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 08:42 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 22:53 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-16 22:23 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-16 15:34 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 16:07 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 11:20 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-16 16:44 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-10-02 13:18 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 00:45 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 12:02 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 01:17 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-16 17:24 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 14:23 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 11:27 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 12:07 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-17 23:10 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 08:40 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 09:02 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 10:44 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-18 13:13 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 22:39 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-18 09:03 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-26 16:46 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-27 08:13 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-29 10:12 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 14:03 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 05:23 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 15:12 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 11:16 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 11:53 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Waldek Hebisch <hebisch@antispam.uni.wroc.pl> - 2015-09-20 15:00 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:23 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 01:23 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 08:58 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-17 16:14 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 09:34 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 12:32 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 03:54 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-17 14:09 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-17 12:17 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-17 10:12 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-17 19:41 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 21:10 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" gazelle@shell.xmission.com (Kenny McCormack) - 2015-09-17 20:19 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-17 21:44 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-17 13:46 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-18 14:00 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-18 06:19 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-18 08:25 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 13:58 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-17 10:48 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" raltbos@xs4all.nl (Richard Bos) - 2015-09-23 15:09 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Keith Thompson <kst-u@mib.org> - 2015-09-23 09:00 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 12:34 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 13:32 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-16 15:01 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-16 02:15 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Rosario19 <Ros@invalid.invalid> - 2015-09-16 09:15 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Rosario19 <Ros@invalid.invalid> - 2015-09-16 10:04 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-16 10:59 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-16 11:29 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-14 11:27 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Waldek Hebisch <hebisch@math.uni.wroc.pl> - 2015-09-20 16:06 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-20 20:06 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-25 02:09 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-25 08:42 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-25 20:06 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-25 13:05 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-26 00:35 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-26 13:10 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 18:44 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-14 12:08 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 21:17 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-15 10:41 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-15 12:16 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Robert Wessel <robertwessel2@yahoo.com> - 2015-09-16 18:38 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 18:34 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 13:49 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-13 19:12 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 14:31 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 01:40 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 20:52 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-14 03:30 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 05:03 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" jt@toerring.de (Jens Thoms Toerring) - 2015-09-14 09:32 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 04:50 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Melzzzzz <mel@zzzzz.com> - 2015-09-14 04:42 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-14 10:43 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-11 19:30 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-11 23:58 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-11 17:54 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-12 11:52 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-12 17:58 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-12 21:09 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" <npnth@number18.invalid.invalid> - 2015-09-12 22:04 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-13 00:29 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-13 07:43 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-13 12:52 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-13 18:27 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-13 22:33 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-13 22:28 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 00:08 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 00:25 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-14 02:16 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 13:27 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Michael Forsythe <forsythe@example.com> - 2015-09-14 03:08 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-14 01:00 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-14 07:19 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" supercat@casperkitty.com - 2015-09-14 11:15 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-14 11:31 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Thompson <dave.thompson2@verizon.net> - 2015-09-20 18:35 -0400
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-12 15:38 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-13 08:38 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Brown <david.brown@hesbynett.no> - 2015-09-13 23:37 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-14 09:48 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-12 12:44 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-12 14:32 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-12 10:40 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-12 08:41 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-11 16:59 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Anand Hariharan <mailto.anand.hariharan@gmail.com> - 2015-09-10 20:28 -0700
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" David Thompson <dave.thompson2@verizon.net> - 2015-09-20 18:35 -0400
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-12 05:04 +0000
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" James Kuyper <jameskuyper@verizon.net> - 2015-09-10 13:43 -0400
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ian Collins <ian-news@hotmail.com> - 2015-09-11 08:52 +1200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" bartekltg <bartekltg@gmail.com> - 2015-09-10 14:51 +0200
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-10 23:12 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Bartc <bc@freeuk.com> - 2015-09-10 14:29 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-10 17:20 +0100
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" wssimms@gmail.com - 2015-09-09 07:32 -0700
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" fir <profesor.fir@gmail.com> - 2015-09-09 08:15 -0700
  Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-09 12:00 +0100
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-09 04:20 -0700
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" Joe Pfeiffer <pfeiffer@cs.nmsu.edu> - 2015-09-09 08:52 -0600
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" Jorgen Grahn <grahn+nntp@snipabacken.se> - 2015-09-09 15:53 +0000
      Re: "Know Your Language: C Rules Everything Around Me (Part One)" Lynn McGuire <lmc@winsim.com> - 2015-09-09 14:46 -0500
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-09 18:38 -0500
      Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-10 01:04 +0100
        Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-09 22:38 -0500
          Re: "Know Your Language: C Rules Everything Around Me (Part One)" James Kuyper <jameskuyper@verizon.net> - 2015-09-10 00:23 -0400
            Re: "Know Your Language: C Rules Everything Around Me (Part One)" Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-10 02:34 -0700
              Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-10 17:51 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" James Kuyper <jameskuyper@verizon.net> - 2015-09-10 19:09 -0400
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-11 02:18 +0100
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" Les Cargill <lcargill99@comcast.com> - 2015-09-10 21:01 -0500
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" James Kuyper <jameskuyper@verizon.net> - 2015-09-10 22:53 -0400
                Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-10 21:47 -0500
          Re: "Know Your Language: C Rules Everything Around Me (Part One)" Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-10 17:06 +0100
        Re: "Know Your Language: C Rules Everything Around Me (Part One)" BGB <cr88192@hotmail.com> - 2015-09-10 10:22 -0500
    Re: "Know Your Language: C Rules Everything Around Me (Part One)" Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-11 12:14 -0700

csiph-web