Keep pushing forward on type inference.

This commit is contained in:
2023-07-21 21:34:35 -07:00
parent 1ad3d6c517
commit 9fb6bf3b86
11 changed files with 577 additions and 275 deletions

View File

@@ -0,0 +1,6 @@
x = 1 + 1u16;
print x;
y = 1u16 + 1;
print y;
z = 1 + 1 + 1;
print z;