[REBOL] Back to the Advanced Port stuff again
From: ptretter::primary::net at: 10-Jan-2001 11:56
Ok. I still see a problem in trying to access the 'word. I'm back to you guru's. I
have written a little code to provide an example:
--------------------------------------------------------------
name: "Paul"
waitports: []
name: make set-word! :name
myport: [
scheme: 'tcp
host: "irc.mcs.net"
port-id: 6667
]
my-open-port: open/lines/no-wait myport
mold name :my-open-port
append waitports get make word! :name
-------------------------------------------------------------------------
Now if I do:
>> found? find waitports paul
== true
Not a problem since I know to look for "paul". But what if I didnt know that Paul was
assigned to name and that this was done dynamically during program execution. How what
I probe the port to get this information.
Paul Tretter