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

[REBOL] Re: (No subject)Date: Mon, 15 Oct 2001 15:09:23 -0600

From: greggirwin::mindspring::com at: 15-Oct-2001 14:04

<< Can anyone tell me how I would make this program read each line from test.txt and make them a variable. For instance if test.txt had the following values on each line. >> The easiest way is just to put them in a block: data: read/lines %/c/rebol/test.txt Now data will be a block of items where each item is a line from the file. Will that work for you? --Gregg