RosettaCodeData/Task/CRC-32/Lua/crc-32.lua

4 lines
135 B
Lua
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
local compute=require"zlib".crc32()
local sum=compute("The quick brown fox jumps over the lazy dog")
print(string.format("0x%x", sum))