1 2 3 4 5 6 7 8 9 10
extend("test") extend("array") describe("array:head", () => { it("returns the first element", () => { expect_equal(array:head([9,8,7]), 9) expect_equal(array:head(["x","y"]), "x") }) })