7 lines
146 B
Text
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())
|
|
}
|