phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0

This commit is contained in:
nyash-codex
2025-11-06 15:41:52 +09:00
parent 2dc370223d
commit 77d4fd72b3
1658 changed files with 6288 additions and 2612 deletions

View File

@ -0,0 +1,32 @@
// 🌐 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!")