diff options
| -rw-r--r-- | .DS_Store | bin | 0 -> 6148 bytes | |||
| -rwxr-xr-x | CST116-BlankConsole/CST116-BlankConsole | bin | 0 -> 46976 bytes | |||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.cpp | 6 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Info.plist | 20 | ||||
| -rw-r--r-- | CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Resources/DWARF/CST116-BlankConsole | bin | 0 -> 92656 bytes |
5 files changed, 25 insertions, 1 deletions
diff --git a/.DS_Store b/.DS_Store Binary files differnew file mode 100644 index 0000000..203d747 --- /dev/null +++ b/.DS_Store diff --git a/CST116-BlankConsole/CST116-BlankConsole b/CST116-BlankConsole/CST116-BlankConsole Binary files differnew file mode 100755 index 0000000..26f4c49 --- /dev/null +++ b/CST116-BlankConsole/CST116-BlankConsole diff --git a/CST116-BlankConsole/CST116-BlankConsole.cpp b/CST116-BlankConsole/CST116-BlankConsole.cpp index f52b208..854c85f 100644 --- a/CST116-BlankConsole/CST116-BlankConsole.cpp +++ b/CST116-BlankConsole/CST116-BlankConsole.cpp @@ -1,11 +1,15 @@ +// Andrei Florea - CST 116 - Lab0 - Editing code
// CST116-BlankConsole.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
+using std::cout;
+using std::endl;
int main()
{
- std::cout << "Hello World!\n";
+ cout << "Hello World!" << endl;
+ cout << "My name is Andrei Florea and my GitHub username is andr3i-f." << endl;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
diff --git a/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Info.plist b/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Info.plist new file mode 100644 index 0000000..c28333c --- /dev/null +++ b/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> + <dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleIdentifier</key> + <string>com.apple.xcode.dsym.CST116-BlankConsole</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>dSYM</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleVersion</key> + <string>1</string> + </dict> +</plist> diff --git a/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Resources/DWARF/CST116-BlankConsole b/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Resources/DWARF/CST116-BlankConsole Binary files differnew file mode 100644 index 0000000..8acf658 --- /dev/null +++ b/CST116-BlankConsole/CST116-BlankConsole.dSYM/Contents/Resources/DWARF/CST116-BlankConsole |