[REBOL] Re: noob question: foreach usage
From: gregg:pointillistic at: 15-Apr-2008 18:50
Hi Doug, D> How do I print the values of x1 and x2 in the foreach loop? D> ;---- start code D> send2: func [ D> arglist D> ][ D> print arglist ; prints the values D> foreach arg arglist [print arg ] ; prints 'x1' 'x2', not values D> ] [print get arg] -- Gregg