lua-users home
lua-l archive

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



function bind(f,...)
args={...}
print(f)
table.foreach(args,print)

end

bind(1,"2")

output:
1
1  2
I think the right behaivor is:
1
2


Regards,
Linker Lin
linker.m.lin@gmail.com