all will be int

This commit is contained in:
Peter
2023-12-10 16:51:49 +01:00
parent 165be5cfdb
commit c4f9bbcbfa
7 changed files with 27 additions and 64 deletions

View File

@@ -4,6 +4,6 @@ fun test() {
return 3;
}
int x = test();
x = test();
print(x);

View File

@@ -1,13 +1,13 @@
int z =5;
int x =5*3;
z =5;
x =5*3;
print(x);
x = 2;
print(x*3);
{
int y =4;
y =4;
print (y);
}