eo icon indicating copy to clipboard operation
eo copied to clipboard

EOLANG, an Experimental Pure Object-Oriented Programming Language Based on 𝜑-calculus

Results 265 eo issues
Sort by recently updated
recently updated
newest added

This code ``` +alias org.eolang.io.stdout +alias org.eolang.txt.sprintf +alias org.eolang.txt.sprintf [] > main stdout > @ sprintf "I am %d years old" 21 ``` should not be executed because of duplicated...

bug

@Graur, There were changed list.map, list.reduce, list.mapi, list.reduced to list.mapped, list.reduced, list.mappedi, list.reducedi. So we need to update it in this repository

https://github.com/objectionary/eo/issues/511

Split from https://github.com/objectionary/eo/issues/739 Refactor the class to pass all checkstyle checks. Current warnings: ``` [INFO] Checkstyle: src/main/java/org/eolang/ExprReduce.java[83]: More than 3 parameters (found 5). (ParameterNumberCheck) [INFO] Checkstyle: src/main/java/org/eolang/ExprReduce.java[104]: More than 3...

Say, this is the code in EO: ``` [] > foo 42 > a 3.1415926 > b "hello" > c ``` It will be translated to XMIR: ```xml 42 3.1415926...

bug
enhancement

let's add a new attribute to list that create a new list witn length and elements by arguments. Smth like that: `[length elem]` > list-by-len @yegor256 @EugeneDar