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
{
  "id": "fn-math-expm1",
  "dataComponent": "math",
  "heading": {
    "title": "expm1",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Computes e^x - 1 for a single numeric argument, more accurately for small x than using exp(x)-1.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:expm1(0) )\\n# => 0\\n\\nsput( math:expm1(1) )\\n# => ~1.718281828\\n"
  ],
  "notes": [
    "Single numeric argument. This is typically more accurate for small x than (exp(x) - 1)."
  ]
}