we have success with 39 but we're introducing more focused agents and a smart router because we see the writing on the wall among other things (benefits)
I think I have a general idea on how to implement basic TCP/IP sockets while staying true to QBasic 4.5's spirit (i.e. not introducing functions like _OpenConnection/_ConnectionAddress etc.)
The "API" I have in mind would look something like
```
OPEN "TCP:\127.0.0.1\80\LISTEN" FOR INPUT AS #1
INPUT #1, CONN$
IF CONN$ <> ""
REM CONN$ contains something like "TCP:\127.0.0.1\80\REMOTE_HOST\REMOTE_PORT"
OPEN CONN$ AS #2
REM ... respond to request
PRINT #2, "200 OK"
CLOSE #2
I feel like maybe this is a consequence of fatherlessness? Just guessing, since my dad's the one that taught me not to publicly ridicule my boss. People take different paths though, so no telling.