|
From: | Ernesto Gabriel |
Subject: | bug#33340: named match-let doesn't work |
Date: | Sun, 11 Nov 2018 00:44:22 -0300 |
match-let works as advertised, but a named match-let gives errors
for example
(match-let (((a . b) '(1 . 2))) (list a b)) => (1 2)
but
(match-let loop (((a . b) '(1 . 2))) (list a b))
does not work, even though it's basically the above code but instead it's named
syntax according to the reference
match-let ((pattern _expression_) …) body
match-let variable ((pattern init) …) body
this is guile 2.2.4
[Prev in Thread] | Current Thread | [Next in Thread] |