RosettaCodeData/Task/MD5/PARI-GP/md5-6.parigp
2023-07-01 13:44:08 -04:00

11 lines
189 B
Text

program GetMd5;
uses md5;
var
strEncrypted : string;
begin
strEncrypted := md5Print(md5String('The quick brown fox jumped over the lazy dog''s back'));
writeln(strEncrypted);
end.