RosettaCodeData/Task/CRC-32/D/crc-32.d

7 lines
140 B
D
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void main() {
import std.stdio, std.digest.crc;
"The quick brown fox jumps over the lazy dog"
.crc32Of.crcHexString.writeln;
}