attempt to remove redundent memory allocations

This commit is contained in:
William Bell
2025-11-08 04:29:09 +00:00
parent 3e3df5595e
commit bfaf8df0d0
8 changed files with 34 additions and 19 deletions

View File

@@ -1,4 +1,9 @@
term.log("hello world")
term.log(()=10)
term.log((x)=10)
term.log((x,y)=10)
term.log((x,y,z)=10)
term.log((x,y,z)=10)
term.log(a()=10)
term.log(b(x)=10)
term.log(c(x,y)=10)
term.log(d(x,y,z)=10)