We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3d12e6 commit a659f85Copy full SHA for a659f85
2 files changed
.gitignore
@@ -30,3 +30,7 @@
30
*.exe
31
*.out
32
*.app
33
+
34
+# own config
35
+a.out
36
+*.swp
section0/test00.cpp
@@ -0,0 +1,12 @@
1
+// Copyright (c) 2020 by Chrono
2
+//
3
+// g++ test00.cpp -std=c++14 -o a.out;./a.out
4
5
+#include <iostream>
6
7
+int main()
8
+{
9
+ using namespace std;
10
11
+ cout << "c++ version = " << __cplusplus << endl;
12
+}
0 commit comments