[REBOL] Re: Help for a newbie
From: carl:cybercraft at: 8-Jun-2001 22:38
On 08-Jun-01, Gary Learned wrote:
> I am just embarking on learning REBOL, and playing with data types
> in an effort to become comfortable with them. My question relates to
> blocks, files and find.
> If I read a directory as in:
> a: read %.
> and then try to find a file name within a, I consistantly receive a
> null response. What am I missing? I am trying things such as:
> find a "foo.txt"
> find a %foo.txt
Hmmm. The second one is correct and should be working if foo.txt is
the full filename. That should return something like...
== [%foo.txt %otherfoo.txt]
b: read first find a %foo.txt
should read the foo.txt text into b... ?
--
Carl Read
[carl--cybercraft--co--nz]