I think it was broken so I fixed it
This commit is contained in:
@ -12,18 +12,23 @@ bar (r,s) := {
|
||||
|
||||
entry (arg) := {
|
||||
[ Boolean:x ; Boolean:y ; Boolean:z ; Boolean:t]
|
||||
if ( y & z | t ) then {
|
||||
(* if ( ( x < y ) & ( z = t ) ) then {
|
||||
y := z < t;
|
||||
t:= 0;
|
||||
} else {
|
||||
t := z = t;
|
||||
z := 1;
|
||||
} *)
|
||||
(* if ( y & (z | t) ) then { *)
|
||||
if ( ( x = y ) & ( z < t ) ) then {
|
||||
(* y := z < t; *)
|
||||
t:= 0;
|
||||
} else {
|
||||
(* t := z = t; *)
|
||||
z := 1;
|
||||
}
|
||||
(*
|
||||
if ( x & y ) then {
|
||||
t := true;
|
||||
} else {
|
||||
y := true; (* bar('c', 7); *)
|
||||
y := true;
|
||||
}
|
||||
*)
|
||||
(* } else { *)
|
||||
(* } *)
|
||||
(* x := x & y; *)
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user