Skip to content

Commit f7107c4

Browse files
committed
fix: revert example code
1 parent 16c6fd3 commit f7107c4

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

testing/good.c

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <stdio.h>
2-
int main()
3-
{
4-
for (;;)
5-
break;
6-
printf("Hello world!\n");
7-
return 0;
8-
}
2+
int main() {
3+
for (;;) break;
4+
printf("Hello world!\n");
5+
return 0;
6+
}

testing/main.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
11
#include <stdio.h>
2-
int main()
3-
{
4-
for (;;)
5-
break;
6-
printf("Hello world!\n");
7-
return 0;
8-
}
2+
int main() {for (;;) break; printf("Hello world!\n");return 0;}

0 commit comments

Comments
 (0)