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

@ -45,13 +45,13 @@ b(x) := {
i := x;
return a;
}
c(x) := {
[string: s]
s := "Hi!";
return x(s);
}
(* Function definition
entry is the first function called
@ -66,7 +66,7 @@ entry(arg) := {
result := 0;
}
else {
[ Boolean : b]
[ Boolean : b]
result := entry("hello");
}
result := c(f);