Hi!
Loading a file just loads the values, it doesn't actually evaluated them.
Try:
do http://rebol.org/file/recursive-dir.r
Hope that helps.
- jim
At 07:52 PM 10/9/99 -0700, you wrote:
>
>brannon@strand /disks/redondo/brannon/rs/bp/experiment/99 : rebol
>REBOL 2.1.2.4.2
>Copyright (C) 1998-1999 REBOL Technologies
>REBOL is a Trademark of REBOL Technologies
>All rights reserved.
>
>Finger protocol loaded
>Whois protocol loaded
>Daytime protocol loaded
>SMTP protocol loaded
>POP protocol loaded
>HTTP protocol loaded
>FTP protocol loaded
>NNTP protocol loaded
>>> load http://rebol.org/file/recursive-dir.r
>load http://rebol.org/file/recursive-dir.r
>connecting to: rebol.org
>REBOL - Security Check:
>Script requests permission to open a port for read/write on: rebol.org
>Yes, no, or abort? (Y/N/A) y
>Y
>== [
> recursive-files: function [path [file!]] [files file file-list] [
> files: load path
> file-list: to-block 1 ...
>>> recursive-files to-path "/tmp"
>recursive-files to-path "/tmp"
>** Script Error: recursive-files has no value.
>** Where: recursive-files to-path "/tmp"
>>> quit
>quit
>brannon@strand /disks/redondo/brannon/rs/bp/experiment/99 :
>
>