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-asinh",
  "dataComponent": "math",
  "heading": {
    "title": "asinh",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Computes the inverse hyperbolic sine of a numeric argument.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:asinh(0) )\\n# => 0\\n\\nsput( math:asinh(1) )\\n# => ~0.881373\\n"
  ],
  "notes": [
    "Accepts 1 numeric argument of any real value.",
    "Returns a float representing asinh(x)."
  ]
}