lc/test.l

12 lines
110 B
Text

u32 main(u32 b)
{
u32 a = 4;
//return a;
if (b == 3) {
return 3;
} else {
return 4;
}
return a;
}