• Re: A critic of Guido's blog on Python's lambda

    From B. Pym@21:1/5 to All on Sun Sep 8 22:05:48 2024
    (iter (for x in '(1 -3 2))
    (finding x maximizing (abs x))) => -3

    Gauche Scheme

    (use gauche.collection :only (find-max))
    (find-max '(1 -3 2) :key abs)

    -3

    Portable Standard Lisp:

    (load useful)

    (for (in x '(1 -3 2))
    (maximal x (abs x)))

    -3

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)