Data update

This commit is contained in:
Ingy döt Net 2024-03-06 22:25:12 -08:00
parent ed705008a8
commit 0df55f9f24
2196 changed files with 32999 additions and 3075 deletions

View file

@ -1,6 +1,6 @@
$ include "seed7_05.s7i";
const func string: reverse (in string: stri) is func
const func string: reverso(in string: stri) is func
result
var string: result is "";
local
@ -13,5 +13,5 @@ const func string: reverse (in string: stri) is func
const proc: main is func
begin
writeln(reverse("Was it a cat I saw"));
writeln(reverso("Was it a cat I saw"));
end func;

View file

@ -0,0 +1,6 @@
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln(reverse("Was it a cat I saw?"));
end func;