Skip to content

Commit a659f85

Browse files
committed
test00.cpp
1 parent f3d12e6 commit a659f85

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@
3030
*.exe
3131
*.out
3232
*.app
33+
34+
# own config
35+
a.out
36+
*.swp

section0/test00.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)