I added some more backpatching and some more files for testing

This commit is contained in:
Meyer Simon
2025-05-04 17:43:08 -04:00
parent 4ae76d0341
commit 61cc807b8a
8 changed files with 113 additions and 18 deletions

View File

@ -12,7 +12,7 @@ bar (r,s) := {
entry (arg) := {
[ Boolean:x ; Boolean:y ; Boolean:z ; Boolean:t]
while ( !( x & y ) (* | ( z | t ) *) ) {
while ( ( x | y ) (* | ( z | t ) *) ) {
(*
if ( ( x < y ) & ( z = t ) ) then {
y := z < t;
@ -20,7 +20,7 @@ entry (arg) := {
t := z = t;
}
*)
y := true; (* bar('c', 7); *)
y := t < z; (* bar('c', 7); *)
}
(* x := x & y; *)
return 0;