Max Trunnikov
Max Trunnikov
Closes: #942
It happens because byte array of `0.0` and byte array of `0` have the same length equal to 8 (since all `int` objects cast to `long` in the core of...
Is (or will be) there a way we can try to implement object in `eo` before java? Example: we have object `float.plus` that is implemented in java. We have in...
In some cases we can get `NaN` or `Infinities` as a result of object dataization. For example: - `0.0.div 0.0` => `nan`, - `1.0.div 0.0` => `positive-infinity`, - `(number nan).ln`...
Hey everyone! [This](https://stackoverflow.com/questions/71540887/laravel-phpunit-github-actions-failed-asserting-that-1-is-identical-to-1) is the link to my question on stackoverflow, no answers for now. I'm trying to make "continues integration" pipeline and run tests on github actions server after...
Ref: #2873 --- ## PR-Codex overview This PR updates object references in YAML files and XSL stylesheets, changing `ρ` to `σ` for consistency and clarity. ### Detailed summary - Updated...
Delta binding in phi calculus is a special binding, where `∆` is not so much an attribute as an special container for data (sequence of bytes). It would be good...
While working on #2801 I faced the situation where I need `@CaptureLogs` annotation in `eo-parser` module. But it can't be used there because it's defined in `eo-maven-plugin`. Let's move it...
[Here](https://github.com/objectionary/eo/issues/2503) is described that every time we complie `eo-runtime` the result `.class` files should be placed not in `org.eolang` or `EOorg.EOeolnag`, but in `p9c46a67.org.eolang` or `p9c46a67.EOorg.EOeolang` where `9c46a67` is a...
In the course of implementing #1602, we faced a problem on "transpile" step. Let's imagine we have the next eo code with versioned objects: ``` [] > foo QQ.fs.dir|0.28.5 >...