Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions _sources/ActiveCode/clangs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ You can also have C++ code in an activecode.
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
cout << "Hello World!" << endl;
cout << "Welcome to C++ Programming" << endl;
}

.. reveal:: lc2_src
Expand All @@ -41,7 +42,8 @@ You can also have C++ code in an activecode.
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
cout << "Hello World!" << endl;
cout << "Welcome to C++ Programming" << endl;
}


Expand Down