blob: f14056ddfb5b7cf72017c3c2f91d99a5e40780b6 (
plain) (
blame)
1
2
3
4
5
6
|
return require('lib/tap')(function (test)
test("basic 64bit conversions", function (print, p, expect, uv)
assert(string.format("%x", 29913653248) == "6f6fe2000")
assert(string.format("%x", 32207650816) == "77fb9c000")
end)
end)
|