Re: Meaning of symbol prefixed with "#$"

2023-05-25 Thread Robby Zambito
"N. Y." writes: > Hi all, > > I was wondering what is the meaning of symbols prefixed with "#$", for > example "#$version" in Guix package definitions. G-Expressions in Guix are created using #~, similar to how S-Expressions are created using ' or ` in Scheme (and other Lisps). The single quot

Meaning of symbol prefixed with "#$"

2023-05-25 Thread N. Y.
Hi all, I was wondering what is the meaning of symbols prefixed with "#$", for example "#$version" in Guix package definitions. I was trying to write a package definition for a python package whose version number was intended to be inferred from git metadata during build time via versioneer. Howe