extend("test")
extend("array")
extend("string")
describe("example math & array", () => {
it("should perform simple addition", () => {
expect_equal( 2 + 2, 4 )
})
it("should map numbers in an array", () => {
expect_equal(
array:map(x => x * 2, [1,2,3]),
[2,4,6]
)
})
})