[REBOL] Refinements
From: robert::muench::robertmuench::de at: 12-Nov-2002 17:48
Hi, I have a bunch of functions that have the same two refinements: /left /right How can I propagate refinements from a function when calling an other function? Example: my-func1: func [param /left /right][ either left [side: ??][side: ??] my-func2/side ?? ] my-func2: func [param /left /right][ ] Robert