🚀 主要機能: • 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!
33 lines
980 B
Plaintext
33 lines
980 B
Plaintext
// 🔥 超簡単なtry/catchテスト
|
|
|
|
static box Main {
|
|
init { console }
|
|
|
|
main() {
|
|
me.console = new ConsoleBox()
|
|
me.console.log("🎯 try/catchテスト開始")
|
|
|
|
// テスト1: 正常動作
|
|
me.console.log("テスト1: 正常動作")
|
|
try {
|
|
me.console.log("try内部: 正常処理実行")
|
|
} catch (Exception e) {
|
|
me.console.log("catch: " + e)
|
|
}
|
|
me.console.log("テスト1完了")
|
|
|
|
// テスト2: エラー発生
|
|
me.console.log("テスト2: エラー発生")
|
|
try {
|
|
me.console.log("try内部: エラーを起こします")
|
|
local fakeVar
|
|
fakeVar = new NonExistentBox()
|
|
} catch (Exception e) {
|
|
me.console.log("catch成功: " + e)
|
|
}
|
|
me.console.log("テスト2完了")
|
|
|
|
me.console.log("🎉 try/catchテスト終了")
|
|
return "テスト成功"
|
|
}
|
|
} |