🚀 Phase 10.11: Everything is Plugin革命完了!
主な変更: - ConsoleBox/MathBoxプラグイン実装・登録完了 - nyash_box.toml 2ファイルシステム設計(中央レジストリ+個別仕様書) - 全プラグインにnyash_box.tomlテンプレート追加 - プラグイン優先機能(NYASH_USE_PLUGIN_BUILTINS=1)文書化 - ビルトインBox削除準備(ChatGPT5実装中) - ネイティブビルドデモ追加(Linux/Windows動作確認済み) Everything is Box → Everything is Plugin への歴史的転換! 開発20日目にしてビルトインBox全削除という革命的決定。 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
13
examples/console_demo_simple.nyash
Normal file
13
examples/console_demo_simple.nyash
Normal file
@ -0,0 +1,13 @@
|
||||
// Simple ConsoleBox test
|
||||
local c
|
||||
c = new ConsoleBox()
|
||||
|
||||
// First, let's see if the box was created
|
||||
print("ConsoleBox created: " + c)
|
||||
|
||||
// Now try to call methods
|
||||
c.println("Hello from ConsoleBox println!")
|
||||
c.log("Hello from log...")
|
||||
|
||||
// Use traditional print too
|
||||
print("Traditional print works!")
|
||||
Reference in New Issue
Block a user