From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!.POSTED!not-for-mail From: David Thompson Newsgroups: comp.lang.ada Subject: Re: Haskell, anyone? Date: Sun, 06 Dec 2015 07:59:07 -0500 Organization: Poor Message-ID: <77c86bd56f3dun5mqvrrol0u9tkbl35s9c@4ax.com> References: <14533506-4289-4148-b8c4-e970f5778b26@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Injection-Info: mx02.eternal-september.org; posting-host="c57b1571767984dba8ddd60a5dd9aa7f"; logging-data="20602"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19DP25Ei7g1DAdms2g1proGhnZ4AAEsewk=" X-Newsreader: Forte Agent 3.3/32.846 Cancel-Lock: sha1:aR9d1Py9ANYL8v1JjxQXjHwoRhs= Xref: news.eternal-september.org comp.lang.ada:28667 Date: 2015-12-06T07:59:07-05:00 List-Id: On Mon, 16 Nov 2015 02:25:14 -0800 (PST), Hadrien Grasland wrote: (linebreaks added to make quote readable) > [snip] you are expected to do everything using expressions. So if you have ever suffered the horror of debugging three nested trigraphs in C, Trigraphs don't nest; each encodes a single character. You likely mean the conditional operator, often called _ternary_ because it (if it is considered a single thing) has three operands: predicate ? trueexpr : falseexpr which can be abused for things like cond1? cond2? val12: cond3? val103: val100: cond4? val04: val00