nomennescio
nomennescio
If definitions need to be shortened, than at least favor shortening data over shortening quotations.
Found a similar issue ``` USING: kernel math math.functions math.text.utils sequences sorting ; IN: sort-xxx : >digits ( n -- seq ) 1 digit-groups ; : digits> ( seq --...
> Currently make is more popular than percentages, and I’m unsure about the visual conflict between 5% and make %, but it’s technically not too hard. If you have alternate...
> We have a lot of words name `foo%` that are "make words". > > I think to parse `5%` we would want to change make to a different symbol....
I checked #2190 today, and saw it's still not finished. After it's finished, I am willing to start a controlled rewrite of the Git history, based on the archive in...
Did a check today, still the same errors occur. At least no new ones were introduced the past two years.
The index is nice! Yes, ERRORS: are tuple classes, but in the documentation are hard to discern from normal tuples. Maybe just a separate icon would be sufficient as a...
Related issue #2622
According to [`class-of`](https://docs.factorcode.org/content/word-class-of,classes.html) specs "outputs an object's canonical class [.. which is] either its built-in class, or if the object is a tuple, its tuple class." ``` TUPLE: custom-tuple ;...
``` custom-tuple tuple-class instance? -> t \ custom-error error-class instance? -> t ``` So `custom-error` is an instance of `error-class`, which is a subclass of `tuple-class`, yet its superclass is...