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
17
{
  "id": "fn-string-repeat",
  "dataComponent": "string",
  "heading": {
    "title": "repeat",
    "badges": ["String", "PARTIAL"]
  },
  "synopsis": "Repeats a string a specified number of times. Partial/placeholder usage supported.",
  "codeBlocks": [
    "extend(\"string\")\n\nsput( string:repeat(\"ha\", 3) )\n# => \"hahaha\""
  ],
  "notes": [
    "Arguments: string, count (integer, 0..8192).",
    "Partial and _ supported.",
    "Returns error if count is out of range."
  ]
}