lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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;