1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-13 12:55:05 -05:00
Simba/Tests/PS/compress.Simba

10 lines
197 B
Plaintext
Raw Normal View History

2010-09-11 08:01:33 -04:00
program new;
var
comp,decomp : string;
begin
comp := Base64Encode(CompressString('Dit is een test'));
writeln(comp);
decomp := DecompressString(Base64Decode(comp));
Writeln(decomp);
end.