RosettaCodeData/Task/CRC-32/Kotlin/crc-32.kotlin
2017-09-25 22:28:19 +02:00

12 lines
295 B
Text

// version 1.0.6
import java.util.zip.CRC32
fun main(args: Array<String>) {
val text = "The quick brown fox jumps over the lazy dog"
val crc = CRC32()
with (crc) {
update(text.toByteArray())
println("The CRC-32 checksum of '$text' = ${"%x".format(value)}")
}
}