11 lines
300 B
Text
11 lines
300 B
Text
/* NetRexx */
|
|
options replace format comments java crossref symbols binary
|
|
|
|
import java.util.zip.CRC32
|
|
|
|
toBeEncoded = String("The quick brown fox jumps over the lazy dog")
|
|
myCRC = CRC32()
|
|
myCRC.update(toBeEncoded.getBytes())
|
|
say "The CRC-32 value is :" Long.toHexString(myCRC.getValue()) "!"
|
|
|
|
return
|