Files
hakorune/test_local_variables.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

25 lines
640 B
Plaintext

// 🔥 Local変数テスト - 厳密性の実証
static box Main {
init {
console, finalResult
}
main() {
me.console = new ConsoleBox()
me.console.log("🔥 Testing local variables!")
// ✅ local変数の正しい使用
local x, y, result
x = 42
y = 58
result = x + y
me.console.log("Local calculation: " + result)
// ✅ local変数からフィールドへの代入
me.finalResult = result
me.console.log("Final result: " + me.finalResult)
return "Local variables work perfectly!"
}
}