small-projects/python-c-interpriter/main.c
2025-04-11 15:59:55 -05:00

15 lines
172 B
C

#include "other.h"
void main() {
int a = 5;
printf("%d", a);
foo();
int i = 10;
while (i != 0)
{
printf("%d", i);
i -= 1;
}
}