Liste des Groupes | Revenir à cu shell |
On Tue, 6 Aug 2024 08:04:35 -0000 (UTC), Sebastian wrote:
>Better:>
a = b ? (c ? d : e) :
f ? (g ? h : i) :
j;
Better still (fewer confusing parentheses):
>
a =
b ?
c ? d : e
: f ?
g ? h : i
: j;
>Equivalent Lisp, for comparison:>
(setf a (cond (b (if c d e))
(f (if g h i))
(t j)))
You can’t avoid the parentheses, but this, too, can be improved:
>
(setf a
(cond
(b
(if c d e)
)
(f
(if g h i)
)
(t
j
)
) ; cond
)
Les messages affichés proviennent d'usenet.