Skip to content

Commit

Permalink
up eo version to 0.23.16
Browse files Browse the repository at this point in the history
  • Loading branch information
IngeniariusSoftware committed Jul 11, 2022
1 parent 54a169b commit 3595499
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion project/scripts/data/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ code_file_patterns:
- '*.cpp'
- '*.h'
config: null
current_eo_version: 0.23.11
current_eo_version: 0.23.16
ignored_inspection_warnings: null
ignored_transpilation_warnings:
- Wunused-command-line-argument
Expand Down
2 changes: 1 addition & 1 deletion result/eo/c2eo/coperators/and.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
+package c2eo.coperators

[a b] > and
((a.neq 0).and (b.neq 0)).if 1 0 > @
((a.eq 0).or (b.eq 0)).if 0 1 > @
4 changes: 3 additions & 1 deletion result/eo/c2eo/coperators/as-float64.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
+package c2eo.coperators

+alias org.eolang.math.number

[a] > as-float64
a.as-float > @
(number a).as-float > @
4 changes: 3 additions & 1 deletion result/eo/c2eo/coperators/as-int64.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
+package c2eo.coperators

+alias org.eolang.math.number

[a] > as-int64
a.as-int > @
(number a).as-int > @
4 changes: 3 additions & 1 deletion result/eo/c2eo/coperators/mod.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
+package c2eo.coperators

+alias org.eolang.math.number

[a b] > mod
a.mod b > @
(number a).mod b > @
2 changes: 1 addition & 1 deletion result/eo/c2eo/coperators/or.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
+package c2eo.coperators

[a b] > or
((a.neq 0).or (b.neq 0)).if 1 0 > @
((a.eq 0).and (b.eq 0)).if 0 1 > @
4 changes: 2 additions & 2 deletions result/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE.
<artifactId>c2eo-transpiler</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<eolang.version>0.23.11</eolang.version>
<eolang.version>0.23.16</eolang.version>
</properties>
<build>
<plugins>
Expand All @@ -45,7 +45,7 @@ SOFTWARE.
<artifactId>eo-maven-plugin</artifactId>
<version>${eolang.version}</version>
<configuration>
<hash>f8b35878ff8725547bc131bff5ff038f19abff37</hash>
<hash>ef030f1</hash>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 3595499

Please sign in to comment.