🎯 Problem Statement
Python, Lua, and Node.js code snippets are passed directly to python3 -c, lua -e, and node -e in src/main.go:L147-L164. This fails for complex multiline scripts, string quotes, shell-escaped characters, or long code buffers.
📁 Affected Files
🛠️ Proposed Solution
Standardize code execution across all runtimes by writing buffer contents to temporary files prior to invocation (consistent with Go's execution strategy in src/main.go:L166).
🎯 Problem Statement
Python, Lua, and Node.js code snippets are passed directly to
python3 -c,lua -e, andnode -einsrc/main.go:L147-L164. This fails for complex multiline scripts, string quotes, shell-escaped characters, or long code buffers.📁 Affected Files
src/main.go:L147-L164🛠️ Proposed Solution
Standardize code execution across all runtimes by writing buffer contents to temporary files prior to invocation (consistent with Go's execution strategy in
src/main.go:L166).