rcl/golden/json/integer_arithmetic.test
2023-11-22 20:09:19 +01:00

10 lines
97 B
Text

[
18 + 24,
2 * 3 * 7,
50 - 8,
126 / 3,
(-21) * (-2),
]
# output:
[42, 42, 42, 42, 42]