voor de initialise-variable verandering

This commit is contained in:
Peter
2024-03-10 09:53:47 +01:00
parent 613fa9ab1a
commit cb7f6f8e5d
18 changed files with 163 additions and 183 deletions

View File

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