mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-13 12:55:05 -05:00
10 lines
197 B
Plaintext
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.
|