Prototype of X86_64 migration

This commit is contained in:
Roman Venediktov 2024-01-30 18:16:44 +01:00
parent 3fdc3e7f2a
commit e77433e51c
21 changed files with 599 additions and 7165 deletions

View file

@ -9,14 +9,14 @@ fun sort (x) {
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
y := x[i];
x[i] := x[j];
x[j] := y
fi
od
od;
x
x
}
n := read ();