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-sin",
  "dataComponent": "math",
  "heading": {
    "title": "sin",
    "badges": [
      "Math",
      "JSMath"
    ]
  },
  "synopsis": "Returns the sine of a single numeric argument in radians",
  "codeBlocks": [
    "extend(\"math\")\n\nsput( math:sin(0) )\n# => 0\n\nsput( math:sin(3.14159/2) )\n# => ~1\n"
  ],
  "notes": [
    "One argument in radians. Returns float sin(x)."
  ]
}