mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 14:43:01 +02:00
- Add +x to Python scripts with shebangs (3 files) - Remove -x from non-script files like .cpp, .txt, makefile (23 files) - Move shebang to first line in C/imageViewer/lint.sh
12 lines
102 B
C++
12 lines
102 B
C++
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int x = 10;
|
|
while (x-- > 0)
|
|
{
|
|
printf("%d;", x);
|
|
}
|
|
return 0;
|
|
}
|