run
Execute Pylpex code to evaluate custom programming language expressions and functions, returning computed results for analysis and testing.
Instructions
Execute Pylpex code and return the result.
Pylpex is a custom programming language. Before executing code:
Check pylpex://documentation for syntax reference
Review pylpex://examples for working patterns
Ensure code follows Pylpex syntax conventions
Args: code: Valid Pylpex source code to execute
Returns: The evaluated result of the code execution
Example usage: run("2 + 2") # Returns: 4 run("function double(x) { return x * 2 } double(5)") # Returns: 10
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |