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
17
18
{
  "id": "fn-string-upper",
  "dataComponent": "string",
  "heading": {
    "title": "upper",
    "badges": [
      "String"
    ]
  },
  "synopsis": "Converts a single string to uppercase.",
  "codeBlocks": [
    "extend(\"string\")\\n\\nsput( string:upper(\"Hello, world!\") )\\n// => \"HELLO, WORLD!\"\\n\\n# If you pass anything other than a single string, it raises an error."
  ],
  "notes": [
    "The function takes exactly one string argument and returns its uppercase equivalent.",
    "It will fail if given something that is not a single string."
  ]
}