Re: About adding new egg "varg"

siiky via Chicken-users <[email protected]> Fri, 5 Dec 2025 13:18:34 +0000
Newsgroups gmane.lisp.scheme.chicken
Message-ID <[email protected]>
Hey,

Skimming the egg file, `(platform (or linux unix))` appears unnecessarily restrictive. Is there anything really OS-specific (I notice you don't import e.g. `(chicken platform)`)?

From the example in docs/example.md, how would one get the value associated with the mode keyword? Sorry if that's a dumb question, I couldn't really understand how to use the the library from a quick read.

And a small suggestion of style, which you're free to ignore, of course :): In the particular case that there's a single condition in a `cond` expression, I find it more readable to use `when` or `unless`, as appropriate. For example, `(unless pred? body ...)` in place of `(cond ((not pred?) body ...))`

siiky