lloda skribis:
>> On 11 Jan 2023, at 18:37, Thompson, David wrote:
>>
>> On Wed, Jan 11, 2023 at 12:34 PM Ludovic Courtès wrote:
>>>
>>> What could be convenient though is ‘bytevector-copy’ (no bang), which
>>> would combine ‘make-bytevector’ + ‘bytevector-copy!’.
>>
>> 'bytevector-copy' alr
For completeness, this works as well:
lib.scm:
(define-module (lib)
#:use-module ((main) #:select (thing))
#:export (test))
(define-syntax test
(lambda (sintax)
(syntax-case sintax ()
((test id)
(free-identifier=? #'id #'thing)
main.scm:
(define-module (main)
#:use-m