Fix function calling bug

This commit is contained in:
2025-12-26 13:50:14 +11:00
parent d8812fa14e
commit 337b88c148
2 changed files with 6 additions and 0 deletions

4
tests/function.sols Normal file
View File

@@ -0,0 +1,4 @@
def add(int a, int b) {
return a + b
}
add(1, 2)