diff options
| author | Andrei Florea <[email protected]> | 2022-10-05 16:06:35 -0700 |
|---|---|---|
| committer | Andrei Florea <[email protected]> | 2022-10-05 16:06:35 -0700 |
| commit | 5aa2fda519559b69534ee655e7a27e8face63c0f (patch) | |
| tree | 32414cbeb9305af8fa4e99ec489a74921bf6b0c1 | |
| parent | Adding checklist.txt describing my steps to push (diff) | |
| download | archived-cst116-lab0-florea-5aa2fda519559b69534ee655e7a27e8face63c0f.tar.xz archived-cst116-lab0-florea-5aa2fda519559b69534ee655e7a27e8face63c0f.zip | |
Unimportant changes
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | .idea/.gitignore | 8 | ||||
| -rw-r--r-- | .idea/cst116-lab0-florea.iml | 2 | ||||
| -rw-r--r-- | .idea/misc.xml | 6 | ||||
| -rw-r--r-- | .idea/modules.xml | 8 | ||||
| -rw-r--r-- | .idea/vcs.xml | 6 | ||||
| -rw-r--r-- | CST116-BlankConsole/.DS_Store | bin | 0 -> 6148 bytes | |||
| -rw-r--r-- | CST116-BlankConsole/CST-116-LAB0-FLOREA-pseudo-code.txt | 2 |
8 files changed, 34 insertions, 1 deletions
@@ -7,6 +7,9 @@ *.o *.obj +# CLion things + + # Precompiled Headers *.gch *.pch diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/cst116-lab0-florea.iml b/.idea/cst116-lab0-florea.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/cst116-lab0-florea.iml @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module classpath="CMake" type="CPP_MODULE" version="4" />
\ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8cb85cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="CMakeWorkspace"> + <contentRoot DIR="$PROJECT_DIR$" /> + </component> +</project>
\ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ba10718 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/cst116-lab0-florea.iml" filepath="$PROJECT_DIR$/.idea/cst116-lab0-florea.iml" /> + </modules> + </component> +</project>
\ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project>
\ No newline at end of file diff --git a/CST116-BlankConsole/.DS_Store b/CST116-BlankConsole/.DS_Store Binary files differnew file mode 100644 index 0000000..00a6aa3 --- /dev/null +++ b/CST116-BlankConsole/.DS_Store diff --git a/CST116-BlankConsole/CST-116-LAB0-FLOREA-pseudo-code.txt b/CST116-BlankConsole/CST-116-LAB0-FLOREA-pseudo-code.txt index dab326f..7c6973b 100644 --- a/CST116-BlankConsole/CST-116-LAB0-FLOREA-pseudo-code.txt +++ b/CST116-BlankConsole/CST-116-LAB0-FLOREA-pseudo-code.txt @@ -6,4 +6,4 @@ define a main function { print in console "Hello World!" << endline print in console "My name is Andrei Florea and my GitHub username is andr3i-f" << endline -}
\ No newline at end of file +}
\ No newline at end of file |