divide
Divides the first number by the second and returns the quotient. Returns an error if the divisor is zero.
Instructions
Divide the first number by the second (a / b) and return the result. Returns an error if b is zero.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | The first number. | |
| b | Yes | The second number. |