mirror of
https://github.com/LucasVbr/postscript-compiler.git
synced 2026-05-13 17:22:00 +00:00
21 lines
274 B
C
21 lines
274 B
C
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;
|
|
}
|
|
|