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-exp",
  "dataComponent": "math",
  "heading": {
    "title": "exp",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Returns e^x (the exponential function) for a single numeric argument.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:exp(1) )\\n# => ~2.718281828\\n\\nsput( math:exp(0) )\\n# => 1\\n"
  ],
  "notes": [
    "One numeric argument only. Returns e^(value)."
  ]
}