Files
hakorune/local_tests/test_plugin_debug.nyash
Selfhosting Dev 40489a3c97 feat(debug): Add debug logging to console.log_handle for plugin investigation
- Added eprintln! debug messages to trace handle values
- Helps investigate why plugin return values display as blank
- Part of ongoing LLVM backend plugin return value investigation

Related to issue where print(c.get()) shows blank output

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-11 06:03:21 +09:00

11 lines
166 B
Plaintext

local c = new CounterBox()
c.inc()
local val = c.get()
print("Before print:")
print(val)
print("After print")
// 比較用
local x = 42
print("Normal int:")
print(x)