lua-users home
lua-l archive

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


> I think that this syntax is awesome enough for me to
> forgive lua for omitting printf!

It is a nice hack, but if you miss printf, here it is:

function printf(...)
	return io.write(string.format(...))
end