Compare commits

...

1 Commits
main ... v11

Author SHA1 Message Date
FunctionsAPI
2a169744ba Automatic push from FunctionsAPI 2025-01-15 07:04:25 +00:00
3 changed files with 10 additions and 2 deletions

View File

@ -1,2 +1 @@
# f957c308247f48388ad619d5f534259c
# python hello-world

7
main.py Normal file
View File

@ -0,0 +1,7 @@
def print_name(name):
# Print the name
print("The name is:", name)
def main():
name = "Ali" # You can replace this with any name
print_name(name)

2
requirements.txt Normal file
View File

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