hopefully fixed merge
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user