RosettaCodeData/Task/MD5/Pike/md5.pike
2023-07-01 13:44:08 -04: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" );
}