RosettaCodeData/Task/CRC-32/D/crc-32.d
2023-07-01 13:44:08 -04: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;
}