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-math-cbrt",
  "dataComponent": "math",
  "heading": {
    "title": "cbrt",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Returns the cube root of a single numeric argument.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:cbrt(8) )\\n# => 2\\n\\nsput( math:cbrt(-27) )\\n# => -3\\n"
  ],
  "notes": [
    "Takes 1 numeric argument, which can be negative or positive.",
    "Returns the real cube root as a float."
  ]
}