ran into another type inference problem

This commit is contained in:
2024-02-05 17:30:16 -06:00
parent 7def938781
commit 9d41cf0da7
17 changed files with 267 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
x = 1;
function add_x(y) x + y
a = 3;
result = add_x(a);
print result;