From f2056cc83ec2258888024f8948142286419357bc Mon Sep 17 00:00:00 2001 From: sreynit02 Date: Tue, 21 Sep 2021 13:14:00 +0000 Subject: [PATCH] changes to active code for readibility --- _sources/ActiveCode/clangs.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; }