Re: CHanging the order of parameters, is that possible?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: CHanging the order of parameters, is that possible?
- From: Romulo <romuloab@...>
- Date: Sun, 6 Jan 2013 00:12:17 -0200
function foo(fmt, a, b, ... )
print(string.format('%d %s', b, a, ... ))
end
?