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

[REBOL] I give up Re:(3)

From: russ:portone at: 9-Sep-2000 7:49

Paul, "b" is just what comes in from the port. As you can see by the second line of code, 'b is simply a string. You see it's contents when this program runs, as all this does is print 'b over and over as the data arrives. Check out the docs/examples on 'parse... it's very powerful and exactly what you're gonna need to do the work here. Russ --- At 04:50 PM 9/8/2000 -0500, you wrote:
>If I were to parse the "b" from the read-io what type does read-io deliver >is it type port?. If so how do you parse port datatypes? > >Paul Tretter > >-----Original Message----- >From: [Russ--PortONE--com] [mailto:[Russ--PortONE--com]] >Sent: Friday, September 08, 2000 12:02 PM >To: [list--rebol--com] >Subject: [REBOL] I give up Re: > >Perhaps the following (keeping as close to your code as possible) will >help... it's very basic but at least you see responses from the IRC server, >on the basis of which you'll be able to add more to do what you desire. > >REBOL[] > >size: 10000 >b: make string! size <snip>