small-projects/pylua/out.c
2025-04-16 17:27:55 -05:00

26 lines
280 B
C

float x = 1.0;
float y = (x + (2.0 * 3.0));
float hello(float a, float b)
{
if ((a > b))
{
return a;
}
else if ((b > a))
{
return b;
}
else
{
return 0.0;
}
}
while ((x < 10.0))
{
x = (x + 1.0);
}
printf("%f", x);