Merge Parser and typing

This commit is contained in:
Lucàs
2023-04-07 17:37:51 +02:00
parent e691dc72f8
commit 41cc5c6189
10 changed files with 9 additions and 168 deletions
+20
View File
@@ -0,0 +1,20 @@
void yes( int yes){
yes = 5;
return yes;
}
void main (string y, int x, int yooo) {
x = 15;
while (x < 20) {
x = x + 1 -16;
y = "hello";
if (x == 17) {
y = "world";
}
}
yooo = yes(5);
return x;
}