>
> That is also my understanding, confirmed by
>
> $ cat lib.scm
> (define-module (lib)
> #:export (test))
>
> (define-syntax test
> (lambda (sintax)
> (syntax-case sintax ()
> ((test id)
> (datum->syntax sintax (free-identifier=? #'id #'thing))
>
> $ cat test.scm
On 06-01-2023 14:31, yarl baudig wrote:
That is also my understanding, confirmed by
$ cat lib.scm
(define-module (lib)
#:export (test))
(define-syntax test
(lambda (sintax)
(syntax-case sintax ()
((test id)
(datum->syntax sintax (free-identifier=? #'id #'thing)