diff --git a/_sources/ActiveCode/clangs.rst b/_sources/ActiveCode/clangs.rst index 58ffa9a..b0e0c6e 100644 --- a/_sources/ActiveCode/clangs.rst +++ b/_sources/ActiveCode/clangs.rst @@ -23,7 +23,8 @@ You can also have C++ code in an activecode. #include 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 @@ -41,7 +42,8 @@ You can also have C++ code in an activecode. #include 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; }