Post #2226571
2024-12-27 02:26 UTC
@Obdurodon@hachyderm.io To add a bit more about the scripting language, the expression
n %% m computes m mod n, and always returns a value in the range [0, m) even if n is negative: -1 %% m has the value m-1. By contrast, -1 % m would return -1.
Replies (0)
No replies.