1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-11 11:55:02 -05: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.