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

7 lines
162 B
D

void main() {
import std.stdio, std.digest.md;
auto txt = "The quick brown fox jumped over the lazy dog's back";
writefln("%-(%02x%)", txt.md5Of);
}