- 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>
7 lines
122 B
Plaintext
7 lines
122 B
Plaintext
// 算術演算テスト
|
|
print(2 + 3)
|
|
print(10 - 4)
|
|
print(5 * 3)
|
|
print(15 / 3)
|
|
print("Hello" + "World")
|
|
print("Test" * 3) |