aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authors1n <[email protected]>2019-08-17 10:56:29 -0700
committerGitHub <[email protected]>2019-08-17 10:56:29 -0700
commit98a63a3a2001e23b5659a75189bf33dc4f49c656 (patch)
tree42391804859f329c563dc6b296954a6be7ee6ab1 /src/main.cpp
parentlarge upat (diff)
downloadcpp-terminology-98a63a3a2001e23b5659a75189bf33dc4f49c656.tar.xz
cpp-terminology-98a63a3a2001e23b5659a75189bf33dc4f49c656.zip
add namespace std commenting and examples
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
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.
{