mumu 0.10.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
{
  "id": "fn-math-floor",
  "dataComponent": "math",
  "heading": {
    "title": "floor",
    "badges": ["Math", "JSMath"]
  },
  "synopsis": "Rounds a single numeric argument down to the nearest integer, returning a float or int.",
  "codeBlocks": [
    "extend(\"math\")\\n\\nsput( math:floor(3.99) )\\n# => 3\\n\\nsput( math:floor(-2.1) )\\n# => -3"
  ],
  "notes": [
    "One numeric argument. Returns the greatest integer ≤ x."
  ]
}