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
16
{
  "id": "fn-array-repeat",
  "dataComponent": "array",
  "heading": {
    "title": "repeat",
    "badges": ["Array", "PARTIAL"]
  },
  "synopsis": "Alias for array:fill. Returns a new array with the given value repeated count times. Partial and placeholder usage supported.",
  "codeBlocks": [
    "extend(\"array\")\n\nsput(array:repeat(\"x\", 2))\n# => [\"x\",\"x\"]"
  ],
  "notes": [
    "Same as array:fill.",
    "Partial and placeholder usage supported."
  ]
}