[{
  "name": "multiply",
  "ns": "math",
  "description": "Computes x * y",
  "phrases": {
    "active": "Multiplying"
  },
  "ports": {
    "input": {
      "x": {
        "title": "Number",
        "type": "number",
        "required": true
      },
      "y": {
        "title": "Number",
        "type": "number",
        "required": true
      }
    },
    "output": {
      "out": {
        "title": "out",
        "type": "number"
      }
    }
  },
  "fn": "output.out = input.x * input.y\n"
}, {
  "name": "random",
  "ns": "math",
  "description": "Outputs a pseudo-random number between 0 and 1.",
  "phrases": {
    "active": "Providing a random number..."
  },
  "ports": {
    "input": {},
    "output": {
      "out": {
        "title": "out",
        "type": "number"
      }
    }
  },
  "fn": "output.out = Math.random()\n"
}]
