Skip to content

Commit 30b8b84

Browse files
Merge pull request #6 from codeplaysoftware/alan/cpp_example
noddy cpp code
2 parents 355b00f + 090dde6 commit 30b8b84

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

cpp_source/a.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Your First C++ Program
2+
3+
#include <iostream>
4+
5+
int main() {
6+
std::cout << "Hello World!";
7+
return 0;
8+
}

cpp_source/b.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Your First C++ Program
2+
3+
#include <iostream>
4+
5+
int main() {
6+
std::cout << "Hello World!";
7+
return 0;
8+
}

0 commit comments

Comments
 (0)