diff options
| author | Andrei Florea <[email protected]> | 2022-10-01 12:04:26 -0700 |
|---|---|---|
| committer | Andrei Florea <[email protected]> | 2022-10-01 12:04:26 -0700 |
| commit | a0a50926e4f4bd8f1bdb251e47ef358f89fe7f69 (patch) | |
| tree | 78db501a53eafa7c01caaa2d5a41f759c847abea /CST116-BlankConsole | |
| parent | Adding gitignore (diff) | |
| download | cst116-lab0-florea-a0a50926e4f4bd8f1bdb251e47ef358f89fe7f69.tar.xz cst116-lab0-florea-a0a50926e4f4bd8f1bdb251e47ef358f89fe7f69.zip | |
Edited code to lab0 specifications - Finished
Diffstat (limited to 'CST116-BlankConsole')
| -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 |
4 files changed, 25 insertions, 1 deletions
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 |