mumu 0.10.0

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
{
  "id": "fn-array-reverse",
  "dataComponent": "array",
  "heading": {
    "title": "reverse",
    "badges": ["Array"]
  },
  "synopsis": "Returns a new array with elements in reverse order.",
  "codeBlocks": [
    "extend(\"array\")\n\nsput( array:reverse([1,2,3]) )\n# => [3,2,1]"
  ],
  "notes": [
    "Accepts int[], float[], bool[], str[]."
  ]
}