RosettaCodeData/Task/CRC-32/NetRexx/crc-32.netrexx
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

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