RosettaCodeData/Task/CRC-32/Pluto/crc-32.pluto

6 lines
151 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
local crypto = require "crypto"
local fmt = require "fmt"
local str = "The quick brown fox jumps over the lazy dog"
print(fmt.hex(crypto.crc32(str)))