diff --git a/HNC/Excercises/072023 Test function/.idea/.gitignore b/HNC/Excercises/072023 Test function/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml b/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/072023 Test function.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml b/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/misc.xml b/HNC/Excercises/072023 Test function/.idea/misc.xml new file mode 100644 index 0000000..d56657a --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/modules.xml b/HNC/Excercises/072023 Test function/.idea/modules.xml new file mode 100644 index 0000000..b048ae6 --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/.idea/vcs.xml b/HNC/Excercises/072023 Test function/.idea/vcs.xml new file mode 100644 index 0000000..c2365ab --- /dev/null +++ b/HNC/Excercises/072023 Test function/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/main.py b/HNC/Excercises/072023 Test function/main.py new file mode 100644 index 0000000..87e409b --- /dev/null +++ b/HNC/Excercises/072023 Test function/main.py @@ -0,0 +1,6 @@ +def verify(message, expected, actual): + print(message) + if actual != expected: + print("FAILED") + else: + print("PASSED") \ No newline at end of file diff --git a/HNC/Excercises/072023 Test function/main.py~ b/HNC/Excercises/072023 Test function/main.py~ new file mode 100644 index 0000000..87e409b --- /dev/null +++ b/HNC/Excercises/072023 Test function/main.py~ @@ -0,0 +1,6 @@ +def verify(message, expected, actual): + print(message) + if actual != expected: + print("FAILED") + else: + print("PASSED") \ No newline at end of file