Compare commits

...

1 Commits
main ... v5

Author SHA1 Message Date
FunctionsAPI
9015bf4d42 Automatic push from FunctionsAPI 2025-04-10 07:27:38 +00:00
3 changed files with 23 additions and 2 deletions

View File

@ -1,2 +1 @@
# 9fbbdeb5d0c04ea783291e900aaa7f8a
# python hello-world

20
main.py Normal file
View File

@ -0,0 +1,20 @@
def calculate_sum(a, b):
return a + b
def main():
name = "Anna"
age = 30
height = 1.65
experience = 5
total_years = calculate_sum(age, experience)
print(f"Cześć, mam na imię {name}.")
print(f"Mam {age} lat i {experience} lat doświadczenia.")
print(f"Mój wzrost to {height} m.")
print(f"Razem to {total_years} lat (wiek + doświadczenie).")
hobbies = ["czytanie", "bieganie", "gotowanie"]
print("Moje hobby to:")
for hobby in hobbies:
print(f"- {hobby}")

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1