extend("test")
extend("math")
describe("math:arb basic behaviour", () => {
it("adds decimals exactly", () => {
expect_equal( math:arb("0.1 + 0.2"), "0.3" )
})
it("handles big‑integer multiplication", () => {
expect_equal( math:arb("1298912 * 2342334"), "3042485740608" )
})
})