diff options
| author | s1n <[email protected]> | 2019-08-17 11:01:29 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-17 11:01:29 -0700 |
| commit | 8cd549c8e60b9d0a30da6634d10ee121813306db (patch) | |
| tree | 4c8beac9ead3c28fd46dac74870c0371f8c41d8a /src | |
| parent | add namespace std commenting and examples (diff) | |
| download | cpp-terminology-8cd549c8e60b9d0a30da6634d10ee121813306db.tar.xz cpp-terminology-8cd549c8e60b9d0a30da6634d10ee121813306db.zip | |
add extra info ab standard C++ library/ namespace
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 32ef22f..2e11bca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,6 @@ #include <iostream> using namespace std; // Specifies that you don't need to use "std::" before a object. +// More info about the standard or "std" C++ library here; http://www.cplusplus.com/forum/beginner/61121/ void noReturn() // "void" means you DON'T want anything returned from the function. { |