1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Tests/PS/compress.Simba
2010-09-11 14:01:33 +02:00

10 lines
197 B
Plaintext

program new;
var
comp,decomp : string;
begin
comp := Base64Encode(CompressString('Dit is een test'));
writeln(comp);
decomp := DecompressString(Base64Decode(comp));
Writeln(decomp);
end.