>> What is this strange '@(#{ g94}#)' stuff? What must I do to get,
>> say, `scheme>` as the prompt?
>
> Lilypond has all usercode evaluated in a separated module. All of
> the lilypond stuff sits in the (lily) module, but everything in your
> .ly file is executed in a generic new module. And this is what you
> see in the prompt.
Yeah.
> If you do
>
> #(display (current-module))
>
> you will in fact get
>
> #<module (#{ g94}#) 7fe14e8d81e0>
>
> (or similar). So here the (#{ g94#) seems to be just some
> generically generated module name.
Thanks, this helps.
Werner