GitDemo-20240905/main.c

12 lines
81 B
C

//Initial version
void main()
{
int x = 0;
x = 1;
x = x+3;
while(1);
}