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

4 lines
135 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
local compute=require"zlib".crc32()
local sum=compute("The quick brown fox jumps over the lazy dog")
print(string.format("0x%x", sum))