Deutsch English Français Italiano |
<uur2s5$2064m$1@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Muttley@dastardlyhq.com Newsgroups: comp.unix.shell,comp.unix.programmer,comp.lang.misc Subject: Re: Command Languages Versus Programming Languages Date: Sat, 6 Apr 2024 08:58:45 -0000 (UTC) Organization: A noiseless patient Spider Lines: 32 Message-ID: <uur2s5$2064m$1@dont-email.me> References: <uu54la$3su5b$6@dont-email.me> <uu636l$7haj$1@dont-email.me> <20240329084454.0000090f@gmail.com> <uu6om5$cmv8$1@dont-email.me> <20240329101248.556@kylheku.com> <uu6t9h$dq4d$1@dont-email.me> <20240329104716.777@kylheku.com> <uu8p02$uebm$1@dont-email.me> <20240330112105.553@kylheku.com> <uudrfg$2cskm$1@dont-email.me> <87r0fp8lab.fsf@tudado.org> <uuehdj$2hshe$1@dont-email.me> <87wmpg7gpg.fsf@tudado.org> <LISP-20240402085115@ram.dialup.fu-berlin.de> <LISP-20240402091729@ram.dialup.fu-berlin.de> <wrap-20240402092558@ram.dialup.fu-berlin.de> <uui7hf$3gona$1@dont-email.me> <uuj1o5$3pvnq$1@dont-email.me> <87plv6jv1i.fsf@nosuchdomain.example.com> <wwv5xwyifq8.fsf@LkoBDZeT.terraraq.uk> <if-20240404121825@ram.dialup.fu-berlin.de> <uund4g$ugsb$1@dont-email.me> <uup8ul$1fr2t$1@dont-email.me> <indentation-20240405183703@ram.dialup.fu-berlin.de> Injection-Date: Sat, 06 Apr 2024 08:58:45 +0200 (CEST) Injection-Info: dont-email.me; posting-host="d81f18974ff1c6de54f7711b915d74e6"; logging-data="2103446"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19TxB/9r7cfyHT7662YZHnu" Cancel-Lock: sha1:98hNte1+tQP/IPCYowdAogplabw= Bytes: 2542 On 5 Apr 2024 17:37:52 GMT ram@zedat.fu-berlin.de (Stefan Ram) wrote: >Janis Papanagnou <janis_papanagnou+ng@hotmail.com> 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"). Lisp overloads them as block markers which simply makes the code more confusing, not less.