Files
hakorune/test_socket_simple.nyash

13 lines
277 B
Plaintext

// 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
}
}