mumu 0.11.1

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-atan",
  "dataComponent": "math",
  "heading": {
    "title": "atan",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Computes the arctangent (in radians) of a single numeric argument.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:atan(1) )\\n# => ~0.78539816339\\n\\nsput( math:atan(0) )\\n# => 0\\n"
  ],
  "notes": [
    "One argument only, any real number.",
    "Returns the angle in radians in range (-π/2, π/2)."
  ]
}