[REBOL] Re: Bug or feature?
From: gregg:pointillistic at: 28-Dec-2007 21:49
Hi Kai, It complains with me here, so I assume you meant to use FUNC. If that's the case...it's still undocumented behavior, but basically it ignores the unnamed param:>> probe send-mail: func [ addr [string!] [email!] xx [integer!]] [print xx]func [addr [string!] [email!] xx [integer!]][print xx]>> send-mail "test" 11 -- Gregg