I am unable to reproduce the below symptoms with the latest public /View
(win32 and linux x86 libc6).
Regards,
Deryk
----- Original Message -----
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, June 22, 2000 11:49 AM
Subject: [REBOL] Optional Arguments Working? Re:(3)
> Hi Rodney
>
> Yeah, mine does that too. It is even weirder than that. Look at this
> script. When no args are supplied, the function f is not called, when an
> arg is supplied for the 6th call, the function is called all 6 times! I
> think you have found a genuine REBOL bug and have CC'd our correspondence
to
> feedback. Of course, the bug credit is yours.
>
> Cheers
>
> Larry
>
> REBOL []
>
> print {
> Bug in optional args called from script.
> If 123 is removed from the 6th call to f,
> f is not called at all.
> }
>
>
> f: func [a [any-type!]][print "f got called"]
>
> f
> f
> f
> f
> f
> f 123
> halt