RosettaCodeData/Task/CRC-32/D/crc-32.d
2015-02-20 00:35:01 -05:00

6 lines
140 B
D

void main() {
import std.stdio, std.digest.crc;
"The quick brown fox jumps over the lazy dog"
.crc32Of.crcHexString.writeln;
}