RosettaCodeData/Task/MD5/Pike/md5.pike
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
145 B
Text

import String;
import Crypto.MD5;
int main(){
write( string2hex( hash( "The quick brown fox jumped over the lazy dog's back" ) ) + "\n" );
}