Vinzent Steinberg

Results 32 issues of Vinzent Steinberg

Deserializing does not currently check for all invalid inputs. Also see #6 and #7.

Instead of generating integers from a range via floats, we now use the implementation from `rand`, which is more accurate.

It seems like the `D` and `C` commands can add a trailing newline to the file.

Currently ketos outputs the line and column number for parse errors, but not for compile errors. This makes debugging very painful, because the location of the error has to be...

I don't know what kind of example you want in the `examples` directory, but here are a few simple programs: ## Tower of Hanoi ``` lisp (define (move n from...

As far as I know, it is currently not possible to implement loops without resorting to recursion, which is limited by the stack size. It would be useful to have...

The documentation tells you how to create doc comments, but it is not clear what they are good for. Maybe give a hint at how to use them? ``` (use...

`num` is one of the less efficient implementations of multi-precision arithmetic. (IIRC it is several orders of magnitude slower than GMP.) It might be worthwhile to use `ramp` (requires nightly...

Currently it is not possible to find the documentation when reading the README. Ideally there should be a hint how to build it (doxygen) and a link to the build...

type: enhancement
type: documentation

I'm using Mordecai with the `cities500.zip` dump of the geonames database. This makes `check_geonames_date` crash, because MIT is not part of this subset. Would it be possible to use a...