Implement HTTP server infrastructure: SocketBox, HTTPServerBox, HTTPRequestBox, HTTPResponseBox

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-14 06:10:52 +00:00
parent 19d4d0632f
commit 212b46825f
9 changed files with 1834 additions and 3 deletions

13
test_socket_simple.nyash Normal file
View File

@ -0,0 +1,13 @@
// Simple HTTP Box test
static box Main {
init { socket }
main() {
print("🔌 Testing SocketBox creation...")
me.socket = new SocketBox()
print("✅ SocketBox created: " + me.socket.toString())
return true
}
}