Files
postscript-compiler/src/parser_laurian/Tests/progsimple.c
T
2023-04-06 22:59:20 +02:00

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;
}