Hello! Le mercredi 28 juin 2023 à 10:44 +0200, Damien Mattei a écrit : > does it exists in Guile something like == in Racket, > documented here: > https://docs.racket-lang.org/reference/match.html#%28form._%28%28lib._racket%2Fmatch..rkt%29._~3d~3d%29%29
>From what I understand, (== something) would be translated as (? (cut equal? <> something)) if you import srfi-26 for cut (or cute, if something needs to be evaluated once). Vivien