mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 13:03:13 +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
11 lines
210 B
C++
11 lines
210 B
C++
#include <random>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::random_device rd;
|
|
std::uniform_real_distribution<double> dist(1.0, 10.0);
|
|
|
|
for (int i=0; i<16; ++i)
|
|
std::cout << dist(rd) << "\n";
|
|
}
|