Unterhaltung
Nachrichten
-
When I write !scheme libraries, should I try to write code independent of Scheme implementation, or should I just write for Guile, my preferred scheme implementation? When I prefix my library names with "guile-", I feel like I am s…
- drak gefällt das.
- drak wiederholte dies.
-
I try to write implementation-independent where that does not hurt the code, but use Guile-specific constructs where they make it much nicer
arunisaac gefällt das. -
Any opinions on prefixes for library names?
-
I wouldn’t prefix libraries. If another scheme implementation implements the features needed from Guile, or if someone implements them in portable scheme, then the prefix would not be correct anymore (without you changing anything). You can leave prefixing to distro packagers.
-
That sounds reasonable. Thanks!
drak gefällt das. -
However, it may be too late to rename some of my older libraries. :-(