RosettaCodeData/Task/MD5/D/md5-1.d

7 lines
162 B
D
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
void main() {
2013-10-27 22:24:23 +00:00
import std.stdio, std.digest.md;
2013-04-10 21:29:02 -07:00
auto txt = "The quick brown fox jumped over the lazy dog's back";
2013-10-27 22:24:23 +00:00
writefln("%-(%02x%)", txt.md5Of);
2013-04-10 21:29:02 -07:00
}