Le jeudi 15 juin 2023 à 12:25 -0400, Pierre-Luc Gauthier a écrit :
> ```
>    '(
>       (piccolo . ((fullName "Piccolo") (transposition #{bf'#})))
>       ))
> ```

Like many Scheme beginners, you got tripped up by quoting.


Change that to


```
#(define instrumentsInfo
   `(
; ^^^
      (piccolo . ((fullName "Piccolo") (transposition ,#{bf'#})))
;                                                    ^^^
      ))
```


and read  https://extending-lilypond.gitlab.io/en/scheme/quoting.html

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to