Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Feb 20, 2023
1 parent 8c57e9a commit b055d99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eo-runtime/src/main/eo/org/eolang/positive-infinity.eo
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
x.as-bytes
nan.as-bytes

# Multiplication of $ and x
# @todo #1806:30min. Make positive-infinity.times and negative-infinity.times
# worked with multiple arguments without using objects from eo-collections.
# See positive-infinity.plus and negative-infinity.plus as an example
# Multiplication of $ and x
[x...] > times
x.at 0 > first!
if. > @
Expand Down Expand Up @@ -122,17 +122,17 @@
[] > neg
negative-infinity > @

# Difference between $ and x
# @todo #1806:30min. Make positive-infinity.minus and negative-infinity.minus
# worked with multiple arguments without using objects from eo-collections.
# See positive-infinity.plus and negative-infinity.plus as an example
# Difference between $ and x
[x...] > minus
^.plus ((x.at 0).neg) > @

# Quotient of the division of $ by x
# @todo #1806:30min. Make positive-infinity.div and negative-infinity.div
# worked with multiple arguments without using objects from eo-collections.
# See positive-infinity.plus and negative-infinity.plus as an example
# Quotient of the division of $ by x
[x...] > div
x.at 0 > first!
if. > @
Expand Down

0 comments on commit b055d99

Please sign in to comment.