RosettaCodeData/Task/MD5/D/md5-1.d
2023-07-01 13:44:08 -04:00

6 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);
}