Carl Gay
Carl Gay
> > with a custom CL domain > > did you see https://github.com/russell/sphinxcontrib-cldomain/ ? It works©, I set it up for an unpublished project. Thanks, I'll make a note of...
@promovicz has been working on Mindy recently, but I suspect on a flavor of Unix. @promovicz Have you tried Mindy on Windows recently?
`DYLAN_JOBS` was added in 2019 but only affects linking as far as I know.
It feels pretty natural to me to use both `foo.dylan` and `foo.c` in a project. What about adding some uniquifier to the `.o` file corresponding to the Dylan source file?...
Since Clojure has [macros](https://clojure.org/reference/macros), how will this work? It seems to me that for any language with macros that allow creation of new syntactic constructs (any Lisp dialect, Julia, Rust...
For Common Lisp I believe it's literally impossible to do a perfect job finding cross references unless you **are** the Common Lisp compiler, since arbitrary code can be run to...
> Yes, this is (an example of) why `semantic` does program analysis. ? [edit] To clarify, I don't see how that addresses the problem I'm describing.
And when the macro uses data that's only available at run-time in order to generate the code, or generates different code for different Common Lisp implementations? :-) Anyway, hopefully your...
The error occurs on the second assignment to `v[1]`: https://play.opendylan.org/shared/e9eb19497771d59e and doesn't occur when we use doubles everywhere: https://play.opendylan.org/shared/4bbbb7e7045e1a1c
The treatment of `setf` in CLtL2 is pretty good and could be used as inspiration. (Even if it's motivational examples are based on the fact that CL has terrible function...