[REBOL] Re: Propagating refinements
From: sunandadh:aol at: 21-Dec-2001 19:59
Thanks for the responses. I think I'll stick to passing parameters as strings if they have to go anywhere other than the function invoked, eg: flag-item: func [tree-Node [Object!] Action [String!]] [ ;; Flags current node and all its descendants ;;as deleted or reInstated Tree-Node/Status: either Action = "Reinstated" [True] [False] foreach Inner-tree Tree-Node/Inners [ Flag-item Inner-Tree Action ] ] Sunanda.