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
|
|
|
}
|