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
extend("test")
extend("net")


describe("async fetch test", () => {
  it("should get data", () => {
    net:fetch("https://example.org", body => {
      expect_not_equal( body, "peaches")
      expect_equal( type(body), "string" )
    })
  })
})