Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions scripts/hello_rachel.py
Original file line number Diff line number Diff line change
@@ -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}")
11 changes: 11 additions & 0 deletions scripts/hello_shreya.py
Original file line number Diff line number Diff line change
@@ -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}")
11 changes: 11 additions & 0 deletions scripts/hello_willow.py
Original file line number Diff line number Diff line change
@@ -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}")