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-math-sinh",
  "dataComponent": "math",
  "heading": {
    "title": "sinh",
    "badges": [
      "Math",
      "JSMath"
    ]
  },
  "synopsis": "The hyperbolic sine of a single numeric argument.",
  "codeBlocks": [
    "extend(\"math\")\n\nsput( math:sinh(0) )\n# => 0\n\nsput( math:sinh(1) )\n# => ~1.175201193\n"
  ],
  "notes": [
    "One numeric argument => returns float for sinh(x).\n\nhyperbolic functions are similar to standard trigonometric functions but instead use a hyperbolic curve not a circle as a reference."
  ]
}