/in/foo.c: In function 'main':
/in/foo.c:18:28: error: expected ';' before 'printf'
18 | {if(n%i!=0)continue
| ^
| ;
19 | printf("%d is a primer!",n);}
| ~~~~~~
/in/foo.c:10:9: note: '-Wmisleading-indentation' is disabled from this point onwards, since column-tracking was disabled due to the size of the code/headers
10 | else if(n>3)
| ^~~~
/in/foo.c:10:9: note: adding '-flarge-source-files' will allow for more column-tracking support, at the expense of compilation time and memory
/in/foo.c:21:20: error: expected declaration or statement at end of input
21 | return 0;}
| ^~~~~~