small-projects/pylua/out.c

26 lines
280 B
C
Raw Normal View History

2025-04-16 22:27:55 +00:00
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);