fixed issue with not printing array instances in symbol table

This commit is contained in:
Partho
2025-04-14 02:01:51 -04:00
parent 3fc7a6371a
commit 3baa95288a
3 changed files with 108 additions and 88 deletions

View File

@ -47,11 +47,11 @@ foo (x) := {
return x * x;
}
bar1 (a) := {
return a.x * a.y;
bar1(a,b) := {
return a * b;
}
bar2 as (r,s) := {
bar2(r,s) := {
if (r < s) then {
while (!(r < s)) {
r := r + 1;