function calls are starting to work i think

This commit is contained in:
Annie
2025-05-04 16:44:55 -04:00
parent 3e1c510c68
commit 85629fbf14
3 changed files with 51 additions and 27 deletions

View File

@ -28,8 +28,8 @@ function c: string2int_2_integer
function d: iic2b
d(x,y,z) := {
[string: s;integer: s]
return (x < y & z < 'm');
[string: s]
return 0;
}
function entry: string2int
@ -61,7 +61,7 @@ entry(arg) := {
temp := a("Hello");
f := b(temp);
result := c(f);
if (d(1,2,char))
if (d(1,2,'a'))
then {
result := 0;
}