Added sorting test

This commit is contained in:
Dmitry Boulytchev 2018-04-30 18:12:12 +03:00
parent 7314f109b4
commit 3f40a66f43
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,6 @@
> 5
6
7
8
9
10

26
regression/test037.expr Normal file
View file

@ -0,0 +1,26 @@
fun sort (x) local i, j, y, n {
n := x.length;
if n == 0 then return x fi;
for i := 0, i<n, i := i+1 do
for j := i+1, j<n, j := j+1 do
if x[j] < x[i] then
y := x[i];
x[i] := x[j];
x[j] := y
fi
od
od;
return x
}
n := read ();
x := [10, 9, 8, 7, 6, 5];
x := sort (x);
for i:=0, i<x.length, i:=i+1 do
write (x[i])
od

1
regression/test037.input Normal file
View file

@ -0,0 +1 @@
0