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

[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" 1
1 -- Gregg