[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Default value in function parameters?
- From: mitchell <mforal.news@...>
- Date: Tue, 19 Sep 2006 08:29:50 -0400
Hi,
> function f(a or my_default_a, b or my_default_b, c or my_default_c)
>
> end
What about passing false intentionally?
function f(flag or true) ... end
f(false)
-Mitchell;