lua-users home
lua-l archive

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


function foo(fmt, a, b, ... )
   print(string.format('%d %s', b, a, ... ))
end

?