You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently integer division does not work as hoped. In python -1 // 2 == -1 which is what I would expect, but currently in saft it evaluates to 0. It should behave like it does in python (except that it should always return integer values, in python it returns floats sometimes).
The text was updated successfully, but these errors were encountered:
Currently integer division does not work as hoped. In python
-1 // 2 == -1
which is what I would expect, but currently in saft it evaluates to 0. It should behave like it does in python (except that it should always return integer values, in python it returns floats sometimes).The text was updated successfully, but these errors were encountered: