mumu 0.9.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 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]
    )
  })
})