[REBOL] printing a path and its value Re:

2000-09-08 Thread Al . Bri
> I want to print a path (ie, what the path is) and then the value of that path... how can I do so? >> Example: [ [system [ [schemes [ [ftp [ [passive "Passive ftp" [proxy [ [host "proxy host" [port-id

[REBOL] printing a path and its value Re:

2000-09-08 Thread jkinraid
Hi, > I want to print a path (ie, what the path is) and then the value of that path... how >can I do so? > > diag: func [path-block [block!]] [ > foreach p path-block [ > prin p > print " " > print reduce p > ] > ] > > > diag [

[REBOL] printing a path and its value

2000-09-08 Thread princepawn
I want to print a path (ie, what the path is) and then the value of that path... how can I do so? diag: func [path-block [block!]] [ foreach p path-block [ prin p print " " print reduce p ] ] diag [ system/scheme