run_and_share_go_code
Execute Go code in a sandbox environment and generate a shareable URL to distribute your code snippets with others.
Instructions
Run Go code and get both execution results and a shareable URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | The Go code to execute and share | |
withVet | No | Whether to run go vet on the code (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "The Go code to execute and share",
"type": "string"
},
"withVet": {
"default": true,
"description": "Whether to run go vet on the code (default: true)",
"type": "boolean"
}
},
"required": [
"code"
],
"type": "object"
}