explain
Analyze code logic and principles to clarify how programming constructs work and their underlying mechanisms.
Instructions
【代码解释器】详细解释代码逻辑和原理
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | 需要解释的代码 | |
| context | No | 上下文信息 |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "需要解释的代码",
"type": "string"
},
"context": {
"description": "上下文信息",
"type": "string"
}
},
"required": [],
"type": "object"
}