RosettaCodeData/Task/CRC-32/Bait/crc-32.bait
2024-03-06 22:25:12 -08:00

7 lines
146 B
Text

import hash.crc32
fun main() {
text := 'The quick brown fox jumps over the lazy dog'
sum := crc32.checksum(text.bytes())
println(sum.hex())
}