Hi,

Ricardo Wurmus <rek...@elephly.net> writes:

> PS: for future reference, this
>
> (lambda (file)
>  (if (or (string=? file ".")
>          (string=? file ".."))
>  #f
>  #t))
>
> could more concisely be written as
>
> (cute (not (or (string=? <> ".")
>                (string=? <> ".."))))

I think you mean something like this instead:

(lambda (file)
  (not (or (string=? file ".")
           (string=? file ".."))))

Did I miss something?

-- 
Mathieu Lirzin

Reply via email to