hopefully fixed merge

This commit is contained in:
Annie
2025-05-06 15:53:24 -04:00
parent c8491b62e4
commit bab71df517
8 changed files with 135 additions and 86 deletions

View File

@ -30,7 +30,7 @@ function d: iic2b
d(x,y,z) := {
[string: s]
return 0;
return true;
}
function entry: string2int
@ -38,6 +38,7 @@ function entry: string2int
a(x) := {
[string : s]
s := x;
return 0;
}
@ -50,7 +51,7 @@ b(x) := {
c(x) := {
[string: s]
s := "Hi!";
return x(s);
return a(s);
}
@ -61,6 +62,7 @@ entry(arg) := {
[integer: result; string2int: f; integer: temp]
temp := a("Hello");
f := b(temp);
result := f("ahhh");
result := c(f);
if (d(1,2,'c'))
then {