mirror of
https://github.com/LucasVbr/postscript-compiler.git
synced 2026-05-13 17:22:00 +00:00
13 lines
198 B
C
13 lines
198 B
C
void main (string y, int x) {
|
|
x = 15;
|
|
while (x < 20) {
|
|
x = x + 1;
|
|
y = "hello";
|
|
if (x == 17) {
|
|
y = "world";
|
|
}
|
|
/* */
|
|
}
|
|
return x;
|
|
}
|