Files
hakorune/test_arithmetic.nyash
Moe Charm d9825b2657 fix: resolve arithmetic operations after Copilot merge
- Fix try_add/try_sub/try_mul/try_div method call errors
- Use helper functions instead of trait methods to avoid circular dependencies
- All arithmetic operations now working: +, -, *, /, string concat, string repeat
- Add comprehensive arithmetic test file
- Build successful with 0 errors

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-14 23:50:29 +09:00

7 lines
122 B
Plaintext

// 算術演算テスト
print(2 + 3)
print(10 - 4)
print(5 * 3)
print(15 / 3)
print("Hello" + "World")
print("Test" * 3)