Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: get-word in a tcp port description

From: brett:codeconscious at: 22-May-2001 14:51

Well it doesn't get the value it creates one but I believe it gives you want you want:
>> server: "machine-1"
== "machine-1"
>> join tcp:// [server ":8000"]
== tcp://machine-1:8000 And for interest:
>> server: 'machine-1
== machine-1
>> join tcp:// [server ":8000"]
== tcp://machine-1:8000 Brett.