9 lines
216 B
Text
9 lines
216 B
Text
|
|
$ include "seed7_05.s7i";
|
||
|
|
include "encoding.s7i";
|
||
|
|
|
||
|
|
const proc: main is func
|
||
|
|
begin
|
||
|
|
writeln(fromPercentEncoded("http%3A%2F%2Ffoo%20bar%2F"));
|
||
|
|
writeln(fromUrlEncoded("http%3A%2F%2Ffoo+bar%2F"));
|
||
|
|
end func;
|