-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
43 lines (28 loc) · 788 Bytes
/
main.cpp
File metadata and controls
43 lines (28 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include "src\utils.h"
#include "src\random_file.h"
using namespace std;
// todo: random file fn
// - Find the position of matched bytes in a large data memory
int main() {
std::cout << "\n-------------------------\n";
std::cout << "Main\n";
std::cout << "-------------------------\n";
print_cpp_version();
open_vscode(random_my_rust_lib_file()); // 1-3 files daily - read/code
// dbg( res );
// pinned
// --------------------
// vector<int> v { 1, 2, 3 };
// dbg(&vec);
// print_vec(v);
// for (int i = 0; i < 4; i++) {
// println(i);
// };
// ---------------------
std::cout << "\n-- main ended" << std::endl;
return 0;
}