Compare commits

...

1 Commits
main ... v4

Author SHA1 Message Date
FunctionsAPI
b9639d1261 Automatic push from FunctionsAPI 2025-04-09 10:08:35 +00:00
3 changed files with 23 additions and 2 deletions

View File

@ -1,2 +1 @@
# e0bd3c6a13dc4a4b84a762dbb7531d0a # 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