I believe that the backpatching before the and and or are wrong

This commit is contained in:
Meyer Simon
2025-05-06 10:07:13 -04:00
parent bab71df517
commit a459cb1112
2 changed files with 10 additions and 7 deletions

View File

@ -13,8 +13,8 @@ bar (r,s) := {
entry (arg) := {
[ integer: r ; integer: s; Boolean: x]
x := (r < s) & x;
if ( r < s ) then {
(* x := (r < s) & x; *)
if ( ( r < s ) & (s = r) ) then {
r := 5;
} else {
r := 7;