Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
``` $ jq -n 'def f: -2, -1, 0, 2.1, 3, 4000000001; [f as $a | f as $b | try ($a % $b) catch .]' [ 0, 0, "number (-2) and number (0) cannot be divided (remainder) because the divisor is zero", 0, -2, -2, -1, 0, "number (-1) and number (0) cannot be divided (remainder) because the divisor is zero", -1, -1, -1, 0, 0, "number (0) and number (0) cannot be divided (remainder) because the divisor is zero", 0, 0, 0, 0, 0, "number (2.1) and number (0) cannot be divided (remainder) because the divisor is zero", 0, 2, 2, 1, 0, "number (3) and number (0) cannot be divided (remainder) because the divisor is zero", 1, 0, 3, 1, 0, "number (4000000001) and number (0) cannot be divided (remainder) because the divisor is zero", 1, 2, 0 ] ```
- Loading branch information