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-asin",
  "dataComponent": "math",
  "heading": {
    "title": "asin",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Returns the arcsine of a single numeric argument in [-1,1], result in radians.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:asin(0) )\\n# => 0\\n\\nsput( math:asin(1) )\\n# => ~1.57079632679\\n"
  ],
  "notes": [
    "One argument only, must be in the domain [-1,1].",
    "Returns a float in the range [-π/2, π/2]."
  ]
}