diff --git a/README.md b/README.md index 5201399..faae3e4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # COMPSS-211-Final-Project-Template-Repo Template repository for COMPSS-211 Final Projects +## Contributors + +### Shreya Annamaneni + +Hi this is Rachel +>>>>>>> main diff --git a/scripts/hello_rachel.py b/scripts/hello_rachel.py new file mode 100644 index 0000000..8cd0ffc --- /dev/null +++ b/scripts/hello_rachel.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by Rachel. +""" +name = "Rachel" +print(f"Hello from {name}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 42 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file diff --git a/scripts/hello_shreya.py b/scripts/hello_shreya.py new file mode 100644 index 0000000..3506e0b --- /dev/null +++ b/scripts/hello_shreya.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by [Your Name] +""" +name = "[Shreya Annamaneni]" +print(f"Hello from {shreya}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 14 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file diff --git a/scripts/hello_willow.py b/scripts/hello_willow.py new file mode 100644 index 0000000..9375a7e --- /dev/null +++ b/scripts/hello_willow.py @@ -0,0 +1,11 @@ +""" +A simple hello world script by [Your Name] +""" +name = "Willow" +print(f"Hello from {name}!") +print("This is my first script in our group project.") + +# Add a simple calculation +favorite_number = 3 # Change this to your actual favorite number +result = favorite_number * 2 +print(f"My favorite number times 2 is: {result}") \ No newline at end of file