CAP/MiniC/TP04/tests/provided/dataflow/df04.c
2024-10-06 19:58:11 +02:00

16 lines
145 B
C

#include "printlib.h"
int main()
{
int x, y;
x = 2;
if (x < 4)
x = 4;
else
x = 5;
return 0;
}
// EXPECTED