I think it was broken so I fixed it

This commit is contained in:
Meyer Simon
2025-05-04 14:30:04 -04:00
parent 18b5daea0e
commit 4ae76d0341
4 changed files with 57 additions and 66 deletions

View File

@ -11,19 +11,19 @@ bar (r,s) := {
}
entry (arg) := {
[ integer: x ; integer: y; integer: z;integer: t]
while ( (!(x = y)) < ( z = t ) ) {
x := x;
while ( (x < y) = ( z < t ) ) {
[ Boolean: x ; Boolean: y; Boolean: z;Boolean: t]
while ( ((x = y)) < ( z | t ) ) {
while ( (x & y) = ( z < t ) ) {
y := y;
}
(*
x := x;
*)
if ( (x = y) = ( z < t ) ) then {
x := 1;
} else {
x := 1;
}
*)
}
return 0;
}