Files
hakorune/examples/text_adventure/test_room_workaround.nyash
Moe Charm 0bed0c0271 🎉 initial commit: Nyash Programming Language完成版
🚀 主要機能:
• Everything is Box哲学による革新的アーキテクチャ
• WebAssemblyブラウザー対応プレイグラウンド
• アーティスト協同制作デモ - 複数Boxインスタンス実証
• 視覚的デバッグシステム - DebugBox完全統合
• static box Mainパターン - メモリ安全設計

 言語機能:
• NOT/AND/OR/除算演算子完全実装
• ジェネリクス/テンプレートシステム
• 非同期処理(nowait/await)
• try/catchエラーハンドリング
• Canvas統合グラフィックス

🎨 ブラウザー体験:
• 9種類のインタラクティブデモ
• リアルタイムコード実行
• WebCanvas/WebConsole/WebDisplay
• モバイル対応完了

🤖 Built with Claude Code collaboration
Ready for public release!
2025-08-09 15:14:44 +09:00

33 lines
813 B
Plaintext

// Test room with workaround
include "text_adventure/simple_rooms.nyash"
print("Testing Room workaround...")
// Direct creation
print("\n1. Direct Room creation:")
room1 = new Room("Direct Room", "Created directly")
print("Name: " + room1.getName())
print("Visited: " + room1.isVisited())
print("Look result:")
print(room1.look())
// Function return
print("\n2. Function return:")
function makeRoom() {
return new Room("Function Room", "Created in function")
}
room2 = makeRoom()
print("Name: " + room2.getName())
print("Visited: " + room2.isVisited())
print("Look result:")
print(room2.look())
// Test world creation
print("\n3. World creation:")
world = createSimpleWorld()
print("World name: " + world.getName())
print("World look:")
print(world.look())
print("\n✅ Room workaround test completed!")