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

32 lines
1.1 KiB
Plaintext

// 🌐 WebDisplay Demo - Browser output from Nyash
// Shows how Nyash can control web page elements
print("🌐 === WebDisplay Demo Starting ===")
// Create display box for web output
display = new WebDisplayBox("output")
// Display basic text
display.print("Hello from Nyash WebDisplay!")
// Display formatted HTML
display.setHTML("<h1>🐱 Nyash Web Integration</h1>")
display.setHTML("<p>This content is generated by <strong>Nyash</strong> code!</p>")
// Style the display
display.setStyle("background-color", "lightblue")
display.setStyle("padding", "20px")
display.setStyle("border", "2px solid blue")
// Show interactive content
display.setHTML("<div>")
display.setHTML(" <h2>Everything is Box Philosophy</h2>")
display.setHTML(" <ul>")
display.setHTML(" <li>WebDisplayBox controls HTML elements</li>")
display.setHTML(" <li>StringBox handles text content</li>")
display.setHTML(" <li>IntegerBox manages numbers</li>")
display.setHTML(" </ul>")
display.setHTML("</div>")
print("🌐 Web display updated! Check your browser.")
print("Everything is Box - even web page control!")