Le mercredi 28 juin 2023 à 15:51 +0200, Vivien Kraus a écrit : > So, you want to match against the / symbol, not the value of a > variable > named /?
Sorry, I misread. You actually have a variable named /.
So this code is the only relevant one:
(use-modules (ice-9 match) (srfi srfi-26))
(let ((/ 42))
(match (list 1 42)
((c (? (cut equal? <> /)))
c)))
Vivien
