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