diff options
| author | s1n <[email protected]> | 2019-08-17 10:56:29 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-17 10:56:29 -0700 |
| commit | 98a63a3a2001e23b5659a75189bf33dc4f49c656 (patch) | |
| tree | 42391804859f329c563dc6b296954a6be7ee6ab1 /src | |
| parent | large upat (diff) | |
| download | cpp-terminology-98a63a3a2001e23b5659a75189bf33dc4f49c656.tar.xz cpp-terminology-98a63a3a2001e23b5659a75189bf33dc4f49c656.zip | |
add namespace std commenting and examples
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 b3bd46e..32ef22f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ #include <iostream> +using namespace std; // Specifies that you don't need to use "std::" before a object. void noReturn() // "void" means you DON'T want anything returned from the function. { |