mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extend("test")
extend("array")
extend("string")

describe("example math & array", () => {
  it("should pass given an invalid simple addition", () => {
    expect_not_equal( 13 + 37, 33 )
  })

  it("should pass given an invalid result", () => {
    expect_not_equal(
      array:map(x => x * 420, [7, 14, 28]),
      [13, 37]
    )
  })
})