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
{
  "id": "fn-kanvas-display",
  "dataComponent": "kanvas",
  "heading": {
    "title": "display",
    "badges": ["Kanvas"]
  },
  "synopsis": "Displays (shows) a Kanvas window previously created by kanvas:create.",
  "codeBlocks": [
    "extend(\"kanvas\")\n\nwin = kanvas:create([ title: \"Show me!\", width: 400, height: 300 ])\nkanvas:display(win)\n"
  ],
  "notes": [
    "Takes a window handle returned by kanvas:create.",
    "Shows the window. Must be called before drawing functions take effect.",
    "Typically returns a boolean or success indicator."
  ]
}