diff --git a/assignment1testupload/.idea/assignment1testupload.iml b/assignment1testupload/.idea/assignment1testupload.iml new file mode 100644 index 0000000..6774f34 --- /dev/null +++ b/assignment1testupload/.idea/assignment1testupload.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/assignment1testupload/.idea/workspace.xml b/assignment1testupload/.idea/workspace.xml new file mode 100644 index 0000000..c7fcd81 --- /dev/null +++ b/assignment1testupload/.idea/workspace.xml @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1454420095543 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assignment1upload/.idea/.name b/assignment1upload/.idea/.name new file mode 100644 index 0000000..b12d9c7 --- /dev/null +++ b/assignment1upload/.idea/.name @@ -0,0 +1 @@ +assignment1upload \ No newline at end of file diff --git a/assignment1upload/.idea/assignment1upload.iml b/assignment1upload/.idea/assignment1upload.iml new file mode 100644 index 0000000..7b4be19 --- /dev/null +++ b/assignment1upload/.idea/assignment1upload.iml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assignment1upload/.idea/encodings.xml b/assignment1upload/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/assignment1upload/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assignment1upload/.idea/misc.xml b/assignment1upload/.idea/misc.xml new file mode 100644 index 0000000..3eb495b --- /dev/null +++ b/assignment1upload/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assignment1upload/.idea/modules.xml b/assignment1upload/.idea/modules.xml new file mode 100644 index 0000000..2c6e940 --- /dev/null +++ b/assignment1upload/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assignment1upload/.idea/workspace.xml b/assignment1upload/.idea/workspace.xml new file mode 100644 index 0000000..3e7dc19 --- /dev/null +++ b/assignment1upload/.idea/workspace.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1454421845982 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assignment1upload/CMakeLists.txt b/assignment1upload/CMakeLists.txt new file mode 100644 index 0000000..ee40fca --- /dev/null +++ b/assignment1upload/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.3) +project(assignment1upload) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + +set(SOURCE_FILES main.cpp) +add_executable(assignment1upload ${SOURCE_FILES}) \ No newline at end of file diff --git a/assignment1upload/main.cpp b/assignment1upload/main.cpp new file mode 100644 index 0000000..ce0b9c7 --- /dev/null +++ b/assignment1upload/main.cpp @@ -0,0 +1,8 @@ +#include + +using namespace std; + +int main() { + cout << "Hello, World!" << endl; + return 0; +} \ No newline at end of file