Path: ...!fu-berlin.de!uni-berlin.de!not-for-mail From: ram@zedat.fu-berlin.de (Stefan Ram) Newsgroups: comp.unix.shell,comp.unix.programmer,comp.lang.misc Subject: Re: Command Languages Versus Programming Languages Date: 5 Apr 2024 17:37:52 GMT Organization: Stefan Ram Lines: 26 Expires: 1 Feb 2025 11:59:58 GMT Message-ID: References: <20240329084454.0000090f@gmail.com> <20240329101248.556@kylheku.com> <20240329104716.777@kylheku.com> <20240330112105.553@kylheku.com> <87r0fp8lab.fsf@tudado.org> <87wmpg7gpg.fsf@tudado.org> <87plv6jv1i.fsf@nosuchdomain.example.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: news.uni-berlin.de vXjtoikWKm8wzHnU2zvKCQ7vjSy2Q9hSiKE5YpVhQoTa3s Cancel-Lock: sha1:MrYECv3UxwpioTtPeqT0ES0AMyg= sha256:PX9LQSXG5Pxxng9fDZNxNcL+pfDlNUWWdWMeoG1vR48= X-Copyright: (C) Copyright 2024 Stefan Ram. All rights reserved. Distribution through any means other than regular usenet channels is forbidden. It is forbidden to publish this article in the Web, to change URIs of this article into links, and to transfer the body without this notice, but quotations of parts in other Usenet posts are allowed. X-No-Archive: Yes Archive: no X-No-Archive-Readme: "X-No-Archive" is set, because this prevents some services to mirror the article in the web. But the article may be kept on a Usenet archive server with only NNTP access. X-No-Html: yes Content-Language: en-US Bytes: 2831 Janis Papanagnou wrote or quoted: >On 05.04.2024 01:29, Lawrence D'Oliveiro wrote: >>This is where indentation helps. E.g. >> a = >> b ? >> c ? d : e >> : f ? >> g ? h : i >> : j; >> >Indentation generally helps. Let me give it a try to find how I would indent that! b? c? d: e: f? g? h: i: j; >The parenthesis are not used for grouping, but are the alternative >form for IF/THEN/ELSE/FI It's funny how the discussion oscillates between "too many parentheses" (LISP code) and "not enough parentheses" ("let me add some parens to improve readability").