mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 16:43:08 +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
9 lines
102 B
C++
9 lines
102 B
C++
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
float X = 1/2;
|
|
std::cout << X << std::endl;
|
|
return 0;
|
|
}
|