Added missing file

This commit is contained in:
Dmitry Boulytchev 2018-11-01 15:08:13 +03:00 committed by danyaberezun
parent 9bc9967912
commit 66de3dd1f9

17
regression/test034.expr Normal file
View file

@ -0,0 +1,17 @@
fun printString (x) {
for i:=0, i<x.length, i:=i+1 do
write (x[i])
od
}
n := read ();
x := "abcdefgh";
printString (x);
for i:=0, i<x.length, i:=i+1 do
x[i] := x[i]+2
od;
printString (x)