6 lines
162 B
D
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);
|
|
}
|