So, when using 'string.format' with '%u', you'd expect a number to be formatted as an unsigned integer, as documented here, but this is what I get while using it:
lua> string.format("%d, %i, %u", -100,-100,-100)
-100, -100, -100
Expected output would be:-100, -100, 4294967196
Anyone has thoughts on this? I suppose that if this is indeed a bug, it would be in LuaJ.












