test updates woooo

This commit is contained in:
Scarlett
2025-05-04 16:05:13 -04:00
parent ea7c284665
commit a61d0a57e8
167 changed files with 1757 additions and 572 deletions

View File

@ -1,4 +1,4 @@
$$ TEST: [-asc -tc]
(* TEST: [-asc -tc] *)
(* Type definitions *)
(* mapping type *)
@ -29,7 +29,6 @@ function c: string2int_2_integer
function d: iic2b
d(x,y,z) := {
[string: s;integer: s]
return (x < y & z < 'm');
}
@ -58,11 +57,11 @@ c(x) := {
entry is the first function called
*)
entry(arg) := {
[integer: result; string2int: f; integer: temp; character: char]
[integer: result; string2int: f; integer: temp]
temp := a("Hello");
f := b(temp);
result := c(f);
if (d(1,2,char))
if (d(1,2,'c'))
then {
result := 0;
}