Sujet : Re: Top 10 most common hard skills listed on resumes...
De : already5chosen (at) *nospam* yahoo.com (Michael S)
Groupes : comp.lang.cDate : 08. Sep 2024, 09:58:27
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <20240908115827.00007521@yahoo.com>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
User-Agent : Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-w64-mingw32)
On Sun, 8 Sep 2024 05:44:16 +0200
Janis Papanagnou <janis_papanagnou+
ng@hotmail.com> wrote:
On 06.09.2024 13:34, Bart wrote:
In more complicated cases in languages, then some asymmetry does
come up. For example, suppose C allowed this (my language allows the
equivalent):
(c ? a : b) = x;
In Algol 68 you can write
IF c THEN a ELSE b FI := x
or, in a shorter form, as
( c | a | b ) := x
if you prefer.
Are you sure?
It seems to me that you got it backward.