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

[REBOL] printing a path and its value

From: princepawn::lycos::com at: 8-Sep-2000 6:40

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/schemes/ftp/passive system/schemes/ftp/proxy/host system/schemes/ftp/proxy/port-id system/schemes/ftp/proxy/type ]