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

7 lines
140 B
D
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
void main() {
2015-02-20 00:35:01 -05:00
import std.stdio, std.digest.crc;
2013-04-10 16:57:12 -07:00
"The quick brown fox jumps over the lazy dog"
2015-02-20 00:35:01 -05:00
.crc32Of.crcHexString.writeln;
2013-04-10 16:57:12 -07:00
}