mirror of
https://github.com/LucasVbr/postscript-compiler.git
synced 2026-05-13 17:22:00 +00:00
Merge Parser and typing
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user